23 lines
972 B
Text
23 lines
972 B
Text
@using WebsitePanel.WebDavPortal.Resources
|
|
@using WebsitePanel.WebDavPortal.UI.Routes
|
|
@model WebsitePanel.WebDavPortal.Models.Account.PasswordResetEmailModel
|
|
|
|
@{
|
|
Layout = "~/Views/Shared/_Layout.cshtml";
|
|
}
|
|
|
|
|
|
<div class="container row">
|
|
@using (Html.BeginRouteForm(AccountRouteNames.PasswordResetEmail, FormMethod.Post, new { @class = "user-password-reset-email bs-val-styles col-lg-10 col-lg-offset-3", id = "user-password-reset" }))
|
|
{
|
|
<div class="form-group">
|
|
<h3>@UI.PasswordReset</h3>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="@Html.IdFor(x => x.Email)" class="control-label">@UI.PasswordResetEmailInfo</label>
|
|
@Html.TextBoxFor(x => x.Email, new { @class = "form-control", placeholder = UI.Login })
|
|
@Html.ValidationMessageFor(x => x.Email)
|
|
</div>
|
|
<button type="submit" class="btn btn-default">@UI.SendEmail</button>
|
|
}
|
|
</div>
|