btcpayserver/BTCPayServer/Views/Account/ForgotPassword.cshtml
Umar Bolatov 57852821f5
Remove sync modal from "Forgot password" page (#3159)
* Update "Forgot password" page layout

* Fix null reference error
2021-11-26 11:54:33 +09:00

40 lines
1.5 KiB
Text

@model ForgotPasswordViewModel
@{
ViewData["Title"] = "Forgot your password?";
Layout = "_LayoutSimple";
}
<section>
<div class="container">
<partial name="_StatusMessage" />
<div class="row justify-content-center">
<div class="col-md-6 section-heading">
<h2>@ViewData["Title"]</h2>
<hr class="primary">
</div>
</div>
<div class="row justify-content-center">
<div class="col-md-6">
<form asp-action="ForgotPassword" method="post">
<h4>Start password reset</h4>
<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" class="form-label"></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>
</div>
</section>
@section PageFootContent {
<partial name="_ValidationScriptsPartial" />
}