Skip to content

Commit

Permalink
fix styling of password fields on register page
Browse files Browse the repository at this point in the history
  • Loading branch information
adelikat committed Jul 7, 2024
1 parent 75da57c commit 3e3fe17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions TASVideos/Pages/Account/Register.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@
</fieldset>
<fieldset>
<label asp-for="Password"></label>
<input asp-for="Password" autocomplete="new-password" maxlength="524288" />
<input asp-for="Password" class="form-control" autocomplete="new-password" maxlength="524288" />
<span asp-validation-for="Password"></span>
</fieldset>
<fieldset>
<label asp-for="ConfirmPassword"></label>
<input asp-for="ConfirmPassword" autocomplete="new-password" maxlength="524288" />
<input asp-for="ConfirmPassword" class="form-control" autocomplete="new-password" maxlength="524288" />
<span asp-validation-for="ConfirmPassword"></span>
</fieldset>
</column>
Expand Down

0 comments on commit 3e3fe17

Please sign in to comment.