diff options
| author | Michael <[email protected]> | 2017-03-21 20:15:26 -0400 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-03-21 20:15:26 -0400 |
| commit | b2ced5a7925fe1be7dc1b6c823482fee93719775 (patch) | |
| tree | 0d274327f69928e277ef8a2e7266058d0fa09621 | |
| parent | 34fe681202caa7f92f8d41d811f80b57fe5de854 (diff) | |
| download | project-unite-b2ced5a7925fe1be7dc1b6c823482fee93719775.tar.gz project-unite-b2ced5a7925fe1be7dc1b6c823482fee93719775.tar.bz2 project-unite-b2ced5a7925fe1be7dc1b6c823482fee93719775.zip | |
Oops.
That feeling when you turn a password field into an EMAIL FIELD.
| -rw-r--r-- | Project-Unite/Views/Account/Login.cshtml | 4 |
1 files 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 @@ <div class="form-group"> @Html.LabelFor(m => m.Email, new { @class = "col-md-2 control-label" }) <div class="col-md-10"> - @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" }) </div> </div> <div class="form-group"> @Html.LabelFor(m => m.Password, new { @class = "col-md-2 control-label" }) <div class="col-md-10"> - @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" }) </div> </div> |
