@using GCI.PortalCondomino.Models @model PagadorModel @{ ViewBag.Title = "Dados Pessoais"; Layout = "~/Views/BackOffice/_Layout.cshtml"; }

@ViewBag.Title

@using (Html.BeginForm("Index", "Account", new { ReturnUrl = ViewBag.ReturnUrl }, FormMethod.Post, new { role = "form", lpformnum = "1" })) { @Html.AntiForgeryToken() if (!string.IsNullOrEmpty(ViewBag.Feedback) && ViewBag.Feedback == "SUCCESS") {

Informação enviada para a administração para processamento em sistema central.

}
@if (!ViewData.ModelState.IsValid) { }
} @section footer { @Html.Partial("_ContactosAdminPartial", Model.AdminData) } @section scripts { }