From b2ced5a7925fe1be7dc1b6c823482fee93719775 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 21 Mar 2017 20:15:26 -0400 Subject: [PATCH] Oops. That feeling when you turn a password field into an EMAIL FIELD. --- Project-Unite/Views/Account/Login.cshtml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Project-Unite/Views/Account/Login.cshtml b/Project-Unite/Views/Account/Login.cshtml index 4c7f5cf..4d3266f 100644 --- a/Project-Unite/Views/Account/Login.cshtml +++ b/Project-Unite/Views/Account/Login.cshtml @@ -17,14 +17,14 @@
@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" }) @Html.ValidationMessageFor(m => m.Email, "", new { @class = "text-danger" })
@Html.LabelFor(m => m.Password, new { @class = "col-md-2 control-label" })
- @Html.PasswordFor(m => m.Password, new { @class = "form-control", type = "email" }) + @Html.PasswordFor(m => m.Password, new { @class = "form-control" }) @Html.ValidationMessageFor(m => m.Password, "", new { @class = "text-danger" })