summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Project-Unite/Views/Account/Login.cshtml4
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>