2017-09-13 08:47:34 +02:00
@model ForgotPasswordViewModel
@{
ViewData["Title"] = "Forgot your password?";
}
2018-04-10 06:12:03 +02:00
<section>
<div class="container">
2019-10-31 07:19:38 +01:00
@if (TempData.HasStatusMessage())
2019-06-06 11:47:31 +02:00
{
2018-04-10 06:12:03 +02:00
<div class="row">
<div class="col-lg-12 text-center">
2019-10-31 07:19:38 +01:00
<partial name="_StatusMessage" />
2017-09-13 08:47:34 +02:00
</div>
2018-04-10 06:12:03 +02:00
</div>
2019-06-06 11:47:31 +02:00
}
2018-04-10 06:12:03 +02:00
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">@ViewData["Title"]</h2>
<hr class="primary">
</div>
<div class="col-md-4">
<form asp-action="ForgotPassword" method="post">
<h4>Start password reset</h4>
<hr />
<p>
We all forget passwords every now and then. Just provide email address tied to your account and we'll start the process of helping you recover your account.
</p>
<div asp-validation-summary="All" class="text-danger"></div>
<div class="form-group">
<label asp-for="Email"></label>
<input asp-for="Email" class="form-control" />
<span asp-validation-for="Email" class="text-danger"></span>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</div>
2017-09-13 08:47:34 +02:00
</div>
2018-04-10 06:12:03 +02:00
</section>
2017-09-13 08:47:34 +02:00
@section Scripts {
@await Html.PartialAsync("_ValidationScriptsPartial")
}