You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

34 lines
1.4 KiB

@model Sevomin.Models.ForgotPasswordViewModel
@{
ViewBag.Title = "بازنشانی رمز عبور";
}
@Html.Partial("PostResult", ViewBag.Result as Sevomin.Models.PostResultViewModel)
<div class="page-header rtl">
<h1>بازنشانی رمز عبور <small>برای بازنشانی رمز عبور خود، ایمیل خود را وارد کنید.</small></h1>
</div>
<div class="row rtl">
<div class="col-md-12">
@using (Html.BeginForm("Forgot", "Account", FormMethod.Post, new { role = "form" }))
{
@Html.AntiForgeryToken()
<div class="form-horizontal">
<div class="form-group">
<div class="col-md-3 pull-right">
@Html.LabelFor(model => model.Email, new { @class = "control-label" })
</div>
<div class="col-md-9">
@Html.TextBoxFor(model => model.Email, new { @class = "form-control ltr" })
@Html.ValidationMessageFor(model => model.Email)
</div>
</div>
<div class="form-group">
<div class="col-md-12">
<button type="submit" class="btn btn-default">ارسال رمز عبور</button>
</div>
</div>
</div>
}
</div>
</div>