@using GCI.PortalCondomino.Models
@using GCI.PortalCondomino.Helpers
@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.
}
}
@section footer {
@Html.Partial("_ContactosAdminPartial", Model.AdminData)
}
@section scripts {
}