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:
Renaud Paquay
2010-05-13 16:31:27 -07:00
parent e7c3af20aa
commit edb1867e25
2 changed files with 4 additions and 4 deletions

View File

@@ -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>

View File

@@ -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>