diff options
| author | Rylan <[email protected]> | 2017-03-21 21:14:51 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-03-21 21:14:51 -0400 |
| commit | 53119de68051303bf3128dede20c6fa93e55e294 (patch) | |
| tree | d3cbe2353e673c240f30e8ab394c1ad0d4d8e86b | |
| parent | c12309407e6ddbe2904a094d407f8724a6827ee3 (diff) | |
| parent | c72fbf1c1f22db1d195f736f99fb3abf08500217 (diff) | |
| download | project-unite-53119de68051303bf3128dede20c6fa93e55e294.tar.gz project-unite-53119de68051303bf3128dede20c6fa93e55e294.tar.bz2 project-unite-53119de68051303bf3128dede20c6fa93e55e294.zip | |
Merge pull request #1 from craftxbox/master
password should not be type email, for somereason it was
| -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 +} |
