file_formdata_password.html (502B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 </head> 6 <body> 7 <!-- Text/Password in the name indicates the type and the position of 'Value' 8 indicates when the value gets set relative to the type changes. --> 9 <input id="TextValue"> 10 <input id="TextValuePassword"> 11 <input id="TextPasswordValue"> 12 13 <input id="PasswordValueText" type="password"> 14 <input id="PasswordTextValue" type="password"> 15 <input id="PasswordValue" type="password"> 16 </body> 17 </html>