You are on page 1of 1

<asp:Content runat="server" ID="BodyContent" ContentPlaceHolderID="LeftContent"> <hgroup class="title"> <h1><%: Title %>.

</h1> </hgroup> <section id="loginForm"> <h2>Use a local account to log in.</h2> <asp:Login runat="server" ViewStateMode="Disabled" RenderOuterTable="fal se"> <LayoutTemplate> <p class="validation-summary-errors"> <asp:Literal runat="server" ID="FailureText" /> </p> <fieldset> <legend>Log in Form</legend> <ol> <li> <asp:Label runat="server" AssociatedControlID="UserN ame">User name</asp:Label> <asp:TextBox runat="server" ID="UserName" /> <asp:RequiredFieldValidator runat="server" ControlTo Validate="UserName" CssClass="field-validation-error" ErrorMessage="The user nam e field is required." /> </li> <li> <asp:Label runat="server" AssociatedControlID="Passw ord">Password</asp:Label> <asp:TextBox runat="server" ID="Password" TextMode=" Password" /> <asp:RequiredFieldValidator runat="server" ControlTo Validate="Password" CssClass="field-validation-error" ErrorMessage="The password field is required." /> </li> <li> <asp:CheckBox runat="server" ID="RememberMe" /> <asp:Label runat="server" AssociatedControlID="Remem berMe" CssClass="checkbox">Remember me?</asp:Label> </li> </ol> <asp:Button runat="server" CommandName="Login" Text="Log in" OnClick="Unnamed6_Click" /> </fieldset> </LayoutTemplate> </asp:Login> <p> <asp:HyperLink runat="server" ID="RegisterHyperLink" ViewStateMode=" Disabled">Register</asp:HyperLink> if you don't have an account. </p> </section> <section id="socialLoginForm"> <h2>Use another service to log in.</h2> <uc:OpenAuthProviders runat="server" ID="OpenAuthLogin" /> </section> </asp:Content>

You might also like