diff options
| author | craftxbox <[email protected]> | 2017-03-21 22:43:38 -0230 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-03-21 22:43:38 -0230 |
| commit | 2d75a2145db622a842fac729cbaf0318e18a5caf (patch) | |
| tree | d3cbe2353e673c240f30e8ab394c1ad0d4d8e86b /Project-Unite | |
| parent | c12309407e6ddbe2904a094d407f8724a6827ee3 (diff) | |
| download | project-unite-2d75a2145db622a842fac729cbaf0318e18a5caf.tar.gz project-unite-2d75a2145db622a842fac729cbaf0318e18a5caf.tar.bz2 project-unite-2d75a2145db622a842fac729cbaf0318e18a5caf.zip | |
password should not be type email, for somereason it was
Diffstat (limited to 'Project-Unite')
| -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 4d3266f..413f833 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 = "password" }) @Html.ValidationMessageFor(m => m.Password, "", new { @class = "text-danger" }) </div> </div> @@ -59,4 +59,4 @@ @section Scripts { @Scripts.Render("~/bundles/jqueryval") -}
\ No newline at end of file +} |
