Skip to content

Commit 192054c

Browse files
committed
Corrected issue #60
1 parent 7b97e0f commit 192054c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/Server/Coderr.Server.Web/Areas/Admin/Views/Messaging/Email.cshtml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
</div>
2828
<div class="form-group">
2929
@Html.LabelFor(x => x.AccountPassword, new { @class = "control-label" })
30-
@Html.TextBoxFor(x => x.AccountPassword, new { @class = "form-control", placeholder = "Password for the above account", autocomplete = "new-password" })
30+
@Html.PasswordFor(x => x.AccountPassword, new { @class = "form-control", placeholder = "Password for the above account", autocomplete = "new-password" })
3131
</div>
3232
<div class="form-group">
3333
<label class="control-label">Password verification</label>

src/Server/Coderr.Server.Web/Areas/Installation/Views/Messaging/Email.cshtml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
</div>
2828
<div class="form-group">
2929
@Html.LabelFor(x => x.AccountPassword, new {@class = "control-label"})
30-
@Html.TextBoxFor(x => x.AccountPassword, new {@class = "form-control", placeholder = "Password for the above account", autocomplete = "new-password" })
30+
@Html.PasswordFor(x => x.AccountPassword, new {@class = "form-control", placeholder = "Password for the above account", autocomplete = "new-password" })
3131
</div>
3232
<div class="form-group">
3333
<label class="control-label">Password verification</label>

src/Server/Coderr.Server.Web/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@
3434
// You can specify all the values or you can default the Revision and Build Numbers
3535
// by using the '*' as shown below:
3636

37-
[assembly: AssemblyVersion("1.1.2.0")]
38-
[assembly: AssemblyFileVersion("1.1.2.0")]
37+
[assembly: AssemblyVersion("1.1.3.0")]
38+
[assembly: AssemblyFileVersion("1.1.3.0")]

0 commit comments

Comments
 (0)