29 lines
946 B
HTML
29 lines
946 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>${context.getContextName()}</title>
|
|
${Styles.src(zhiqim.css)}
|
|
${Styles.htmlOverflowYScroll()}
|
|
<style>body{background:#cad7f7;font-size: 14px;}</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="z-w100p z-h100"></div>
|
|
|
|
<table class="z-table z-bd z-blue z-bg-white zi-w80p z-pd10 z-mg-t50 z-relative-center">
|
|
<tr>
|
|
<th colspan="2" class="z-px16 z-lh150p z-text-white z-bg-blue-deep">${context.getContextName()}</th>
|
|
</tr>
|
|
<tr>
|
|
<td align="right" class="z-bd-l z-blue" width="40%">登录名:</td>
|
|
<td><input class="z-input z-blue" name="userName" type="text" placeholder="请输入账号" size="15" value="zhiqim" maxlength="32" autocomplete="off"></td>
|
|
</tr>
|
|
<tr>
|
|
<td align="right">密 码:</td>
|
|
<td><input class="z-input z-blue" name="userPass" type="password" size="15" value="zhiqim" maxlength="32" autocomplete="off"></td>
|
|
</tr>
|
|
</table>
|
|
|
|
<div class="z-w100p z-h100"></div>
|
|
</body>
|
|
</html> |