Files
Orchard/src/Orchard.Web/Modules/Orchard.Users/Views/Account/LogOn.ascx
Renaud Paquay a249579191 Fix localization issue from previous merge
--HG--
branch : dev
2010-06-04 19:58:23 -07:00

25 lines
1.3 KiB
Plaintext

<%@ Control Language="C#" Inherits="Orchard.Mvc.ViewUserControl<LogOnViewModel>" %>
<%@ Import Namespace="Orchard.Users.ViewModels"%>
<h1><%=Html.TitleForPage(Model.Title)%></h1>
<p><%=_Encoded("Please enter your username and password.")%> <%= Html.ActionLink(T("Register").Text, "Register")%><%=_Encoded(" if you don't have an account.")%></p>
<%= Html.ValidationSummary(T("Login was unsuccessful. Please correct the errors and try again.").ToString())%>
<%
using (Html.BeginFormAntiForgeryPost(Url.Action("LogOn", new {ReturnUrl = Request.QueryString["ReturnUrl"]}))) { %>
<fieldset>
<legend><%=_Encoded("Account Information")%></legend>
<div>
<label for="userNameOrEmail"><%=_Encoded("Username or Email:")%></label>
<%= Html.TextBox("userNameOrEmail", "", new { autofocus = "autofocus" })%>
<%= Html.ValidationMessage("userNameOrEmail")%>
</div>
<div>
<label for="password"><%=_Encoded("Password:")%></label>
<%= Html.Password("password")%>
<%= Html.ValidationMessage("password")%>
</div>
<div>
<%= Html.CheckBox("rememberMe")%><label class="forcheckbox" for="rememberMe"><%=_Encoded("Remember me?")%></label>
</div>
<input type="submit" value="<%=_Encoded("Log On") %>" />
</fieldset><%
} %>