@page @model RazorAPP.Pages.RegisterModel @{ ViewData["Title"] = "Register"; } @*

@ViewData["Title"]

*@

Create a new account

@foreach (var gender in Model.Input.Genders) { @Html.RadioButtonFor(model => model.Input.Gender,gender) @gender
}
.The Password must be at least 6 and at max 100 characters long,atleast one alpha numeric char and contain atleast one uppercase(A-Z).
@*

Create a new account.


*@ @*

Use another service to register.


@{ if ((Model.ExternalLogins?.Count ?? 0) == 0) {

There are no external authentication services configured. See this article for details on setting up this ASP.NET application to support logging in via external services.

} else {

@foreach (var provider in Model.ExternalLogins) { }

} }
*@ @section Scripts { }