mirror of
https://github.com/lempamo/Project-Unite.git
synced 2025-01-22 17:22:15 +00:00
password should not be type email, for somereason it was
This commit is contained in:
parent
c12309407e
commit
2d75a2145d
1 changed files with 2 additions and 2 deletions
|
@ -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")
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue