mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +08:00
Fix bug 16416
See http://orchard.codeplex.com/WorkItem/View.aspx?WorkItemId=16416 Contoso and Corporate themes were using incorrect field names for user
This commit is contained in:
@@ -10,8 +10,8 @@ using (Html.BeginFormAntiForgeryPost(Url.Action("LogOn", new {ReturnUrl = Reques
|
||||
<legend><%=_Encoded("Account Information")%></legend>
|
||||
<div class="group">
|
||||
<label for="username"><%=_Encoded("Username:")%></label>
|
||||
<%= Html.TextBox("username")%>
|
||||
<%= Html.ValidationMessage("username")%>
|
||||
<%= Html.TextBox("userNameOrEmail")%>
|
||||
<%= Html.ValidationMessage("userNameOrEmail")%>
|
||||
</div>
|
||||
<div class="group">
|
||||
<label for="password"><%=_Encoded("Password:")%></label>
|
||||
|
||||
@@ -10,8 +10,8 @@ using (Html.BeginFormAntiForgeryPost(Url.Action("LogOn", new {ReturnUrl = Reques
|
||||
<legend><%=_Encoded("Account Information")%></legend>
|
||||
<div class="group">
|
||||
<label for="username"><%=_Encoded("Username:")%></label>
|
||||
<%= Html.TextBox("username")%>
|
||||
<%= Html.ValidationMessage("username")%>
|
||||
<%= Html.TextBox("userNameOrEmail")%>
|
||||
<%= Html.ValidationMessage("userNameOrEmail")%>
|
||||
</div>
|
||||
<div class="group">
|
||||
<label for="password"><%=_Encoded("Password:")%></label>
|
||||
|
||||
Reference in New Issue
Block a user