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">
|
2021-04-08 15:32:42 +02:00
|
|
|
<partial name="_StatusMessage" />
|
|
|
|
|
2019-11-08 23:05:46 +01:00
|
|
|
<div class="row justify-content-center">
|
|
|
|
<div class="col-md-6 section-heading">
|
2019-11-01 21:55:05 +01:00
|
|
|
<h2>@ViewData["Title"]</h2>
|
2018-04-10 06:12:03 +02:00
|
|
|
<hr class="primary">
|
|
|
|
</div>
|
2019-11-08 23:05:46 +01:00
|
|
|
</div>
|
|
|
|
<div class="row justify-content-center">
|
|
|
|
<div class="col-md-6">
|
2018-04-10 06:12:03 +02:00
|
|
|
<form asp-action="ForgotPassword" method="post">
|
|
|
|
<h4>Start password reset</h4>
|
|
|
|
<p>
|
2020-07-13 19:09:59 +02:00
|
|
|
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.
|
2018-04-10 06:12:03 +02:00
|
|
|
</p>
|
|
|
|
<div asp-validation-summary="All" class="text-danger"></div>
|
|
|
|
<div class="form-group">
|
2021-06-06 13:44:54 +02:00
|
|
|
<label asp-for="Email" class="form-label"></label>
|
2018-04-10 06:12:03 +02:00
|
|
|
<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>
|
2021-04-08 15:32:42 +02:00
|
|
|
|
2021-05-19 04:39:27 +02:00
|
|
|
@section PageFootContent {
|
2021-04-08 15:32:42 +02:00
|
|
|
<partial name="_ValidationScriptsPartial" />
|
2017-09-13 08:47:34 +02:00
|
|
|
}
|