27 lines
850 B
Text
27 lines
850 B
Text
@{
|
|
Layout = "~/Views/Shared/_Layout.cshtml";
|
|
}
|
|
@using WebsitePanel.WebDavPortal.Resources
|
|
@using WebsitePanel.WebDavPortal.UI.Routes
|
|
@model WebsitePanel.WebDavPortal.Models.Common.EditorTemplates.PasswordEditor
|
|
|
|
<div class="container row">
|
|
@using (Html.BeginRouteForm(AccountRouteNames.PasswordResetFinalStep, FormMethod.Post, new { @class = "form-horizontal user-password-reset-final-step bs-val-styles col-lg-9 col-lg-offset-3", id = "user-password-reset" }))
|
|
{
|
|
|
|
<div class="form-group">
|
|
<h3>@UI.PasswordReset</h3>
|
|
</div>
|
|
|
|
@Html.EditorFor(x=>x)
|
|
|
|
<div class="form-group">
|
|
<div class="col-sm-offset-2 col-sm-10">
|
|
<button type="submit" class="btn btn-default">@UI.ChangePassword</button>
|
|
</div>
|
|
</div>
|
|
}
|
|
</div>
|
|
|
|
|
|
|