@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" })