ForgotPasswordConfirmation.cshtml
420 Bytes
@{
ViewBag.Title = "Forgot Password Confirmation";
}
<h1>@ViewBag.Title.</h1>
<div class="row">
<div class="col">
<p>
Password reset link has been sent. Please check your email to reset your password.
</p>
<div class="row">
<div class="col-auto">
@Html.ActionLink("Back to Log In", "index", "home", new { area = "" }, new { @class = "btn btn-outline-dark" })
</div>
</div>
</div>
</div>