📄 skin-login.ascx
字号:
<%@ Control Language="C#" Inherits="NetFocus.Web.Applications.Forum.Login, NetFocus.Web.Applications.Forum"
AutoEventWireup="true" %>
<script type="text/javascript">
function fEvent(sType,oInput){
switch (sType){
case "focus" :
oInput.isfocus = true;
case "mouseover" :
oInput.style.borderColor = '#9ecc00';
break;
case "blur" :
oInput.isfocus = false;
case "mouseout" :
if(!oInput.isfocus){
oInput.style.borderColor='#84a1bd';
}
break;
}
}
</script>
<div class="loginwrapper">
<div class="AdminArea">
<fieldset>
<legend>用户登陆</legend>
<div class="login" style="position: relative">
<table border="0" cellspacing="0" class="login_table">
<tr>
<td class="login_table_text1">
<nwap:ResourceLiteral runat="server" ResourceName="Login_UserName" /></td>
<td class="login_table_text1_1">
<nwap:DefaultButtonTextBox runat="server" Button="loginButton" CssClass="login_table_text1_input"
ID="userName" Style="font-weight: bold; font-family: Verdana, Arial, Helvetica, sans-serif"
onFocus="fEvent('focus',this)" onBlur="fEvent('blur',this)" onMouseOver="fEvent('mouseover',this)"
onMouseOut="fEvent('mouseout',this)" MaxLength="50" /></td>
<td>
</td>
</tr>
<tr>
<td class="login_table_space1" colspan="3">
</td>
</tr>
<tr>
<td class="login_table_text2">
<nwap:ResourceLiteral runat="server" ResourceName="Login_Password" /></td>
<td class="login_table_text1_1">
<nwap:DefaultButtonTextBox runat="server" Button="loginButton" TextMode="Password"
CssClass="login_table_text1_input" ID="password" onMouseOver="fEvent('mouseover',this)"
onFocus="fEvent('focus',this)" onBlur="fEvent('blur',this)" onMouseOut="fEvent('mouseout',this)"
MaxLength="50" /></td>
<td>
<a href="javascript:void(0);" target="_blank" title="找回密码" class="c_black">忘记密码了?</a></td>
</tr>
<tr>
<td class="login_table_space3" colspan="3">
</td>
</tr>
<tr>
<td colspan="3">
<nwap:ResourceButton ID="loginButton" CssClass="btn1" runat="server"></nwap:ResourceButton>
<a href="register.aspx" target="_blank" class="btn3" title="立即注册"></a>
</td>
</tr>
</table>
</div>
</fieldset>
</div>
</div>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -