@model RSystem.Models.RegisterViewModel @{ ViewBag.Title = "Rejestracja"; }
@using (Html.BeginForm("Register", "Account", FormMethod.Post, new {@class = "form-horizontal", role = "form"})) {
@Html.AntiForgeryToken()
Podstawowe informacje
@Html.LabelFor(m => m.PESEL, new {@class = "control-label required"}) @Html.TextBoxFor(m => m.PESEL, new {@class = "form-control fs-19"}) @Html.ValidationMessageFor(m => m.PESEL, "", new { @class = "text-danger fs-16" })
@Html.LabelFor(m => m.Email, new {@class = "control-label required"}) @Html.TextBoxFor(m => m.Email, new {@class = "form-control fs-19"}) @Html.ValidationMessageFor(m => m.Email,"", new { @class = "text-danger fs-16" })
Hasło
@Html.LabelFor(m => m.Password, new {@class = "control-label required"}) @Html.TextBoxFor(m => m.Password, new {@class = "form-control fs-25", type = "password"}) @Html.ValidationMessageFor(m => m.Password, "", new { @class = "text-danger fs-16" })
@Html.LabelFor(m => m.ConfirmPassword, new {@class = "control-label required"}) @Html.TextBoxFor(m => m.ConfirmPassword, new {@class = "form-control fs-25", type = "password"}) @Html.ValidationMessageFor(m => m.ConfirmPassword, "", new { @class = "text-danger fs-16" }) @Html.ValidationSummary("", new { @class = "text-danger fs-16" })
}
@section Scripts { @Scripts.Render("~/bundles/jqueryval") } @section DedicatedStyles { }