Merge pull request #1 from craftxbox/master

password should not be type email, for somereason it was
This commit is contained in:
Rylan 2017-03-21 21:14:51 -04:00 committed by GitHub
commit 53119de680

View file

@ -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")
}
}