123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <%@ page language="java" pageEncoding="UTF-8"%>
- <script type="text/javascript">
- function ini(){
- document.form1.logonName.focus();
- }
- </script>
- <html>
- <head>
- <meta http-equiv="Content-Language" content="zh-cn">
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title></title>
- <link href="${pageContext.request.contextPath}/css/Style.css" rel="stylesheet" type="text/css">
- </head>
- <body onload="ini()">
- <table style="background-color: #FFFFFF" width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
- <tr>
- <td align="center">
- <table width="452" height="290" border="0" cellpadding="0" cellspacing="0">
- <tr>
- <td bgcolor="#FFFFFF">
- <table width="452" height="290" border="0" cellpadding="0" cellspacing="0">
- <tr>
- <td height="74">
- <img width="100%" height="74px" src="${pageContext.request.contextPath}/images/logintitle.gif">
- </td>
- </tr>
- <tr>
- <td align="center" valign="bottom" background="${pageContext.request.contextPath}/images/loginbg.gif">
- <form id="loginAction_home" name="form1" action="${pageContext.request.contextPath}/person?method=login" target="_parent" method="post">
- <table border="0" align="center" cellpadding="2" cellspacing="0">
- <tr>
- <td> </td>
- </tr>
- <tr align="center">
-
- <td height="30" colspan="2" style="border-bottom: 1px dotted #cccccc">
- <strong style="font-size: 14px;">请登录</strong>
- </td>
- </tr>
- <tr>
- <td height="30" nowrap>
- <font color="000F60"><strong>用户名:</strong> </font>
- </td>
- <td>
- <input type="text" name="username" value="" id="logonName" class="text" style="width: 160px;"/>
- </td>
- </tr>
- <tr>
- <td height="30" nowrap>
- <strong><font color="000F60">密码: </font> </strong>
- </td>
- <td>
- <input type="password" name="password" id="logonPwd" class="text" style="width: 160px;"/>
- </td>
- </tr>
- <tr>
- <td height="30" nowrap colspan="2">
- <strong><font color="red"></font> </strong>
- </td>
- </tr>
- <tr>
- <td height="30">
- </td>
- <td>
- <input type="submit" name="submit" value="登录" class="buttoninput"/>
- <a href="${pageContext.request.contextPath}/login/register.jsp"><input type="button" name="register" value="注册"></a>
- <input type="reset" name="reset" value="取消" class="buttoninput"/>
- </td>
- </tr>
- </table>
- </form>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </body>
- </html>
|