[Pass-reset] Fix. Password entry fields are now of type password (Forgot that existed for a bit)
This commit is contained in:
parent
77042a184a
commit
d1397bc967
1 changed files with 3 additions and 3 deletions
|
@ -11,11 +11,11 @@
|
|||
<label for="uid">Username</label>
|
||||
<input type="text" id="uid" name="uid" /> <br />
|
||||
<label for="oldPw">Old Password</label>
|
||||
<input type="text" id="oldPw" name="oldPW" /> <br />
|
||||
<input type="password" id="oldPw" name="oldPW" /> <br />
|
||||
<label for="newPW1">New Password</label>
|
||||
<input type="text" id="newPW1" name="newPW" /> <br />
|
||||
<input type="password" id="newPW1" name="newPW" /> <br />
|
||||
<label for="newPW2">Confirm</label>
|
||||
<input type="text" id="newPW2" name="newPWConfirm" /> <br />
|
||||
<input type="password" id="newPW2" name="newPWConfirm" /> <br />
|
||||
<input type="Button" value="Submit" onclick="handleSubmit(this.form)" />
|
||||
</form>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue