Formatting
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
Reference in New Issue
Block a user