@using TightWiki.Models
@model TightWiki.Models.ViewModels.Profile.AccountProfileViewModel
@{
Layout = "/Views/Shared/_Layout.cshtml";
}
简介
@*
This is your profile, do with it what you may.
*@
@if (!string.IsNullOrEmpty(Model.ErrorMessage))
{
@Html.Raw(Model.ErrorMessage)
}
@if (!string.IsNullOrEmpty(Model.SuccessMessage))
{
@Html.Raw(Model.SuccessMessage)
}
@using (Html.BeginForm(null, null, null, FormMethod.Post, true, new { action = $"{GlobalConfiguration.BasePath}{Context.Request.Path}", enctype = "multipart/form-data" }))
{
@Html.AntiForgeryToken()
}