Formatting for new users

This commit is contained in:
2020-08-18 21:06:08 -04:00
parent 9f654822f8
commit e9211c6ace
6 changed files with 37 additions and 11 deletions
@@ -42,11 +42,11 @@ else
{
@Html.ValidationSummary(false)
@Html.EditorFor(m => registerModel.Name)
@Html.EditorFor(m => registerModel.Name, new {labelText = "User Email"})
@Html.EditorFor(m => registerModel.Email, new { type = "email"})
@Html.EditorFor(m => registerModel.Password, "Password")
<div class="form-group verifyPassword">
@Html.Label("VerifyPassword")
@Html.Label("Verify Password")
@Html.Password("VerifyPassword", null, new { @class = "form-control" })
@Html.ValidationMessage("VerifyPassword", "", new { @class = "text-danger" })
</div>