@using GCI.PortalCondomino.Models
@using GCI.PortalCondomino.Helpers
@model ChangePasswordModel
@{
ViewBag.Title = "Alteração de password";
Layout = "~/Views/BackOffice/_Layout.cshtml";
}
@ViewBag.Title
@using (Html.BeginForm("ChangePassword", "Account", new { ReturnUrl = ViewBag.ReturnUrl }, FormMethod.Post, new { role = "form", lpformnum = "1" }))
{
@Html.AntiForgeryToken()
@Html.Hidden("commonholdid", @Model.CodCondominio, new { id = "commonholdid" })
if (!string.IsNullOrEmpty(ViewBag.Feedback) && ViewBag.Feedback == "SUCCESS")
{
Password alterada com sucesso
}
}
@section footer {
@Html.Partial("_ContactosAdminPartial", Model.AdminData)
}
@section scripts {
}