Formatting

This commit is contained in:
2020-01-27 08:51:22 -05:00
parent 8ca5105fca
commit 8e32a03b32
3 changed files with 3 additions and 2 deletions
+1
View File
@@ -17,6 +17,7 @@ namespace LeafWeb.WebCms.Models
[DataType(DataType.Password)]
public string Password { get; set; }
[Display(Name = "Verify New Password")]
[Required(ErrorMessage = "Password must match verify exactly")]
[DataType(DataType.Password)]
[Compare("Password")]
@@ -16,7 +16,7 @@
@Html.EditorFor(m => loginModel.Password, "PasswordWithForgotLink")
@Html.ValidationSummary("loginModel", true)
<button class="btn btn-primary pull-right">Login</button>
<button class="btn btn-primary pull-right mt-3">Login</button>
@Html.HiddenFor(m => loginModel.RedirectUrl)
}
</div>
+1 -1
View File
@@ -22,7 +22,7 @@
@Html.EditorFor(m => m.PasswordVerify)
<input type="submit" id="submit-form" class="d-none"/>
}
<label for="submit-form" class="btn btn-primary pull-right">Reset</label>
<label for="submit-form" class="btn btn-primary pull-right">Reset Password</label>
</div>
</div>
</div>