@model bitforum.Models.Account.Member @using bitforum.Constants @using bitforum.Helpers @{ ViewData["Title"] = "회원 수정"; }

@ViewData["Title"]


비밀번호는 변경할 경우 입력합니다.

@if (Model.Photo is not null && Model.Photo != string.Empty) { 사진
} else { }
@if (Model.Icon is not null && Model.Icon != string.Empty) { 아이콘
} else { }

@if (Model.EmailVerifiedAt is not null) { @Model.EmailVerifiedAt.GetDateAt() }
@if (Model.AuthCertifiedAt is not null) { @Model.AuthCertifiedAt.GetDateAt() }
@if (Model.DeletedAt is not null) { @Model.DeletedAt.GetDateAt() }
@if (Model.UpdatedAt is not null) {
} @if (Model.CreatedAt != DateTime.MinValue) {
}
취소

@section Scripts { }