mirror of
https://github.com/lempamo/Project-Unite.git
synced 2025-01-22 17:22:15 +00:00
Merge pull request #1 from craftxbox/craftxbox-patch-1
password should not be type email, for somereason it was
This commit is contained in:
commit
c72fbf1c1f
1 changed files with 2 additions and 2 deletions
|
@ -24,7 +24,7 @@
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
@Html.LabelFor(m => m.Password, new { @class = "col-md-2 control-label" })
|
@Html.LabelFor(m => m.Password, new { @class = "col-md-2 control-label" })
|
||||||
<div class="col-md-10">
|
<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" })
|
@Html.ValidationMessageFor(m => m.Password, "", new { @class = "text-danger" })
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -59,4 +59,4 @@
|
||||||
|
|
||||||
@section Scripts {
|
@section Scripts {
|
||||||
@Scripts.Render("~/bundles/jqueryval")
|
@Scripts.Render("~/bundles/jqueryval")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue