diff --git a/Project-Unite/Views/Account/ForgotPassword.cshtml b/Project-Unite/Views/Account/ForgotPassword.cshtml index 1bb2611..04a0ad0 100644 --- a/Project-Unite/Views/Account/ForgotPassword.cshtml +++ b/Project-Unite/Views/Account/ForgotPassword.cshtml @@ -12,7 +12,7 @@
@Html.ValidationSummary("", new { @class = "text-danger" })
- @Html.LabelFor(m => m.Email, new { @class = "col-md-2 control-label" }) + @Html.LabelFor(m => m.Email, new { @class = "col-md-2 control-label", type = "email" })
@Html.TextBoxFor(m => m.Email, new { @class = "form-control" })
diff --git a/Project-Unite/Views/Account/Login.cshtml b/Project-Unite/Views/Account/Login.cshtml index 1244c62..4c7f5cf 100644 --- a/Project-Unite/Views/Account/Login.cshtml +++ b/Project-Unite/Views/Account/Login.cshtml @@ -24,7 +24,7 @@
@Html.LabelFor(m => m.Password, new { @class = "col-md-2 control-label" })
- @Html.PasswordFor(m => m.Password, new { @class = "form-control" }) + @Html.PasswordFor(m => m.Password, new { @class = "form-control", type = "email" }) @Html.ValidationMessageFor(m => m.Password, "", new { @class = "text-danger" })
diff --git a/Project-Unite/Views/Account/Register.cshtml b/Project-Unite/Views/Account/Register.cshtml index a1d1225..52dfce1 100644 --- a/Project-Unite/Views/Account/Register.cshtml +++ b/Project-Unite/Views/Account/Register.cshtml @@ -14,7 +14,7 @@
@Html.LabelFor(m => m.Email, new { @class = "col-md-2 control-label" })
- @Html.TextBoxFor(m => m.Email, new { @class = "form-control" }) + @Html.TextBoxFor(m => m.Email, new { @class = "form-control", type="email" })