mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
43 lines
1.5 KiB
Plaintext
43 lines
1.5 KiB
Plaintext
@model ForgotPasswordViewModel
|
|
@{
|
|
ViewData["Title"] = "Forgot your password?";
|
|
}
|
|
|
|
<section>
|
|
<div class="container">
|
|
@if (TempData.HasStatusMessage())
|
|
{
|
|
<div class="row">
|
|
<div class="col-lg-12 text-center">
|
|
<partial name="_StatusMessage" />
|
|
</div>
|
|
</div>
|
|
}
|
|
<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>
|
|
</div>
|
|
</section>
|
|
@section Scripts {
|
|
@await Html.PartialAsync("_ValidationScriptsPartial")
|
|
}
|