|
<!DOCTYPE HTML>
<html class="s_bs">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="target-densitydpi=device-dpi, width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1" />
<title>工作台</title>
{%>template/common/Head.html%}
<script type="text/javascript" src="biz/js/login.js"></script>
<link href="biz/css/project.css" rel="stylesheet" type="text/css" />
<style>
.ui-input {
padding: 6px 9px;
line-height: 0.22rem;
height: 0.4rem;
width: 3rem;
border: 1px solid #BBBBBB;
font-size: 0.22rem;
color: #777;
background: transparent;
font-size: 0.22rem;
}
.reg_form {
background-color: #fff;
font-size: 0.22rem;
padding-top: 0.12rem;
line-height: 1;
overflow: hidden;
background: #fff;
margin-top: 1rem;
}
.reg_form .reg_table {
}
.reg_form .reg_table td {
padding: 0 0 8px 0;
height: 32px;
}
.reg_form .reg_table td label.des {
text-align: right;
display: table-cell;
width: 1.5rem;
padding: 0.16rem;
line-height: 0.28rem;
}
.reg_form .reg_table .J_ver-wrap .ui-input {
width: 2rem;
}
.J_ver_img {
width: 1rem;
height: 0.4rem;
}
#loginResult span {
line-height: 0.4rem;
height: 0.4rem;
}
</style>
</head>
<body>
<div id="content">
<form class="reg_form">
<table class="reg_table" cellpadding="0" cellspacing="0" border="0" width="100%" id="loginForm">
<tbody>
<tr>
<td width="30%"><label class="des">用户名:</label></td>
<td><input value="" type="text" id="J_username" name="J_username" class="ui-input ui-nt" maxlength="20" title="用户名"></td>
</tr>
<tr>
<td><label class="des">密码:</label></td>
<td><input value="" type="password" id="J_pwd" name="J_pwd" class="ui-input" maxlength="50" title="密码"></td>
</tr>
<tr>
<td><label class="des">验证码:</label></td>
<td class="J_ver-wrap">
<input value="" type="text" id="J_ver" name="J_ver" class="ui-input" maxlength="4" require="true" title="验证码">
<img src="data:image/png;base64, {%VERIFY_IMG%}" id="J_ver_img" class="J_ver_img">
</td>
</tr>
<tr>
<td> </td>
<td>
<button class="e_button-ok" id="loginBtn" onclick="javascript:return false;">登录</button>
</td>
</tr>
</tbody>
</table>
</form>
</div>
<input type="hidden" id="sessionId" value="{%SESSION_ID%}">
</body>
</html>
|