Make reset password promt a password input

This commit is contained in:
2025-05-15 17:46:29 -07:00
parent fe7b80d527
commit 9e464c7119
2 changed files with 3 additions and 2 deletions
@@ -5,11 +5,11 @@
<form class="center big-frame background-border">
<h3>Reset Password</h3>
<div class="frame-item">
<input type="text" placeholder=" " @bind="NewPassword" @onkeyup="OnKeyDown" />
<input type="password" placeholder=" " @bind="NewPassword" @onkeyup="OnKeyDown" />
<label>New Password</label>
</div>
<div class="frame-item">
<input type="text" placeholder=" " @bind="RepeatPassword" @onkeyup="OnKeyDown" />
<input type="password" placeholder=" " @bind="RepeatPassword" @onkeyup="OnKeyDown" />
<label>Repeat New Password</label>
</div>
<div class="">