@page @using EnotaryoPH.Web.Pages.Shared.Components.NotaryoSteps @model UploadIdentificationModel @{ } @section Head { }

Notaryo Steps

@await Component.InvokeAsync("NotaryoSteps", new { NotaryoSteps = new List() { new NotaryoStep { Name = "Upload Identification", Step = 1, IsActive = true }, new NotaryoStep { Name = "Take Selfie", Step = 2 }, new NotaryoStep { Name = "Upload Document", Step = 3 }, new NotaryoStep { Name = "Choose Notary", Step = 4 }, }})
@if (Model.ExistingIdentificationDocuments.Count > 0) {
} else { }
@Html.EditorFor(m => m.NewIdentificationDocument)
@if (Model.ExistingIdentificationDocuments.Count > 0) {

Existing Identification Documents

@foreach(var id in Model.ExistingIdentificationDocuments) { }
Identification Document Type Expiration
@id.IdentificationType @id.ExpirationDate.Value.ToShortDateString()
}
@section Scripts { }