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 /Project-Unite/Views/Account/Login.cshtml | |
| parent | c8461889c40499d89e621f9d2f031e87ea495721 (diff) | |
| download | project-unite-9d07ca1df3c73eaec7e9c14c0f249103011b08a6.tar.gz project-unite-9d07ca1df3c73eaec7e9c14c0f249103011b08a6.tar.bz2 project-unite-9d07ca1df3c73eaec7e9c14c0f249103011b08a6.zip | |
Email fields use type="email"
Diffstat (limited to 'Project-Unite/Views/Account/Login.cshtml')
| -rw-r--r-- | Project-Unite/Views/Account/Login.cshtml | 2 |
1 files changed, 1 insertions, 1 deletions
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> |
