2017-09-13 08:47:34 +02:00
|
|
|
@model ForgotPasswordViewModel
|
|
|
|
@{
|
|
|
|
ViewData["Title"] = "Forgot your password?";
|
2022-01-21 03:10:03 +01:00
|
|
|
Layout = "_LayoutSignedOut";
|
2017-09-13 08:47:34 +02:00
|
|
|
}
|
|
|
|
|
2022-01-21 03:10:03 +01:00
|
|
|
<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>
|
2021-04-08 15:32:42 +02:00
|
|
|
|
2022-01-21 03:10:03 +01:00
|
|
|
<form asp-action="ForgotPassword" method="post">
|
|
|
|
<div asp-validation-summary="All" class="text-danger"></div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label asp-for="Email" class="form-label"></label>
|
|
|
|
<input asp-for="Email" class="form-control" />
|
|
|
|
<span asp-validation-for="Email" class="text-danger"></span>
|
2021-12-11 04:32:23 +01:00
|
|
|
</div>
|
2022-01-21 03:10:03 +01:00
|
|
|
<div class="form-group mt-4">
|
|
|
|
<button type="submit" class="btn btn-primary btn-lg w-100">Submit</button>
|
2017-09-13 08:47:34 +02:00
|
|
|
</div>
|
2022-01-21 03:10:03 +01:00
|
|
|
</form>
|
2021-04-08 15:32:42 +02:00
|
|
|
|
2022-01-21 03:10:03 +01:00
|
|
|
<p class="text-center mt-2 mb-0">
|
|
|
|
<a id="Login" style="font-size:1.15rem" asp-action="Login" asp-route-returnurl="@ViewData["ReturnUrl"]">Log in</a>
|
|
|
|
</p>
|