52 lines
2.0 KiB
Plaintext
52 lines
2.0 KiB
Plaintext
@model GODATA.Models.ChangePasswordModel
|
|
@{
|
|
ViewBag.Title = System.Configuration.ConfigurationManager.AppSettings["Title"] + " | Change Password";
|
|
}
|
|
<h2 class="titleH" style="margin-top: 30px; font-size: 18px;">Change Password</h2>
|
|
<center>
|
|
<div style="background-color: #FFF; height: 100%; width: 100%;">
|
|
@*<p>
|
|
New passwords are required to be a minimum of @Membership.MinRequiredPasswordLength characters in length.
|
|
</p>*@
|
|
<script src="@Url.Content("~/Scripts/jquery.validate.min.js")" type="text/javascript"></script>
|
|
<script src="@Url.Content("~/Scripts/jquery.validate.unobtrusive.min.js")" type="text/javascript"></script>
|
|
@using (Html.BeginForm())
|
|
{
|
|
@Html.ValidationSummary(true, "Password change was unsuccessful. Please correct the errors and try again.")
|
|
|
|
<div class="formateForm">
|
|
<h2 style="font-size: 15px; color: #222;">Account Information</h2>
|
|
<div class="rGroup">
|
|
@Html.LabelFor(m => m.OldPassword)
|
|
@Html.PasswordFor(m => m.OldPassword)
|
|
@Html.ValidationMessageFor(m => m.OldPassword)
|
|
</div>
|
|
<div class="rGroup">
|
|
@Html.LabelFor(m => m.NewPassword)
|
|
@Html.PasswordFor(m => m.NewPassword)
|
|
@Html.ValidationMessageFor(m => m.NewPassword)
|
|
</div>
|
|
<div class="rGroup">
|
|
@Html.LabelFor(m => m.ConfirmPassword)
|
|
@Html.PasswordFor(m => m.ConfirmPassword)
|
|
@Html.ValidationMessageFor(m => m.ConfirmPassword)
|
|
</div>
|
|
<div class="rGroup">
|
|
<input type="submit" value="Change Password" class="themebutton themesimple themeblue" style="font-family:Verdana; font-weight: normal !important;
|
|
font-size: 12px !important; height:28px;" />
|
|
</div>
|
|
</div>
|
|
}
|
|
</div>
|
|
</center>
|
|
<script type="text/javascript">
|
|
$(document).ready(function () {
|
|
//setSelectedMenuItem("");
|
|
});
|
|
</script>
|
|
<style type="text/css">
|
|
a {
|
|
color: #069;
|
|
}
|
|
</style>
|