users_login.ascx
来自「一个ASP.NET下的中文内容管理和社区系统」· ASCX 代码 · 共 31 行
ASCX
31 行
<%@ Control %>
<span class="ForumLogin_SectionTitle">Login</span>
<p class="ForumLogin_SectionDescription">
Please enter your username and password below.
<br>
If you are a new user, click
<a href="Users_Register.aspx" class="ForumLogin_LoginLink">here</a> to register.
</p>
<asp:Panel id="pnlInvalidUsername" CssClass="Error_Message" Runat="Server">
<span style="Form_Message">The username you entered is invalid!</span>
</asp:Panel>
<asp:Panel id="pnlInvalidPassword" CssClass="Error_Message" Runat="Server">
<span style="Form_Message">The password you entered is invalid!</span>
</asp:Panel>
<table>
<tr>
<td><span class="Form_LabelText">Username:</span></td>
<td><asp:TextBox id="txtUsername" Columns="20" Width="150" CssClass="Form_Field" runat="server"></asp:TextBox></td>
</tr>
<tr>
<td><span class="Form_LabelText">Password:</td>
<td><span class="Form_LabelText"><asp:TextBox id="txtPassword" Columns="20" Width="150" TextMode="Password" CssClass="Form_Field" runat="server"></asp:TextBox></span></td>
</tr>
<tr>
<td colspan="2"><span class="Form_Button"><asp:Button id="btnLogin" runat="server" CssClass="Form_Button" Text="Login"></asp:Button></span></td>
</tr>
</table>
<p class="ForumLogin_SectionDescription">
Click <asp:HyperLink id="lnkPasswordReminder" Runat="Server" CssClass="ForumLogin_LoginLink" Text="here" /> for a password reminder.
</p>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?