[Pass-reset] Fix. Password entry fields are now of type password (Forgot that existed for a bit)

This commit is contained in:
eoghan.conlon 2023-07-27 00:53:32 +01:00
parent 77042a184a
commit d1397bc967

View file

@ -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>