diff options
| author | Michael <[email protected]> | 2017-03-21 19:24:57 -0400 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-03-21 19:24:57 -0400 |
| commit | 9d07ca1df3c73eaec7e9c14c0f249103011b08a6 (patch) | |
| tree | b43770b37fa5c9362fa8d806527c11b1cae23cb7 | |
| parent | c8461889c40499d89e621f9d2f031e87ea495721 (diff) | |
| download | project-unite-9d07ca1df3c73eaec7e9c14c0f249103011b08a6.tar.gz project-unite-9d07ca1df3c73eaec7e9c14c0f249103011b08a6.tar.bz2 project-unite-9d07ca1df3c73eaec7e9c14c0f249103011b08a6.zip | |
Email fields use type="email"
| -rw-r--r-- | Project-Unite/Views/Account/ForgotPassword.cshtml | 2 | ||||
| -rw-r--r-- | Project-Unite/Views/Account/Login.cshtml | 2 | ||||
| -rw-r--r-- | Project-Unite/Views/Account/Register.cshtml | 2 |
3 files changed, 3 insertions, 3 deletions
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 @@ <hr /> @Html.ValidationSummary("", new { @class = "text-danger" }) <div class="form-group"> - @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" }) <div class="col-md-10"> @Html.TextBoxFor(m => m.Email, new { @class = "form-control" }) </div> 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 @@ <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" }) + @Html.PasswordFor(m => m.Password, new { @class = "form-control", type = "email" }) @Html.ValidationMessageFor(m => m.Password, "", new { @class = "text-danger" }) </div> </div> 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 @@ <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" }) </div> </div> <div class="form-group"> |
