| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title>Insert title here</title>
- <style type="text/css">
- .wrapper{
- background:url("images/backround.png") no-repeat;
- height:1000px;
- /* margin-top: 100px; */
-
- }
- .wrapper1{
- margin-top:100px;
- }
- .table{
- margin-left:100px;
- margin-top:100px;
-
- }
- .ziti{
- font-size:25px;
- font-weight:blod;
- color:white;
- margin-bottom:20px;
- }
- .manager{
- color:white;
- }
- </style>
- </head>
- <body>
- <div class="wrapper">
- <div class="wrapper1">
- <img alt="" src="images/logo.png">
- </div>
-
-
- <form class="table" action = "login" method="post">
- <div class="ziti">    管理员登录页面</div>
- <table width="400" height = "200" border="5" bordercolor="#A0A0A0">
- <tr>
- <th class="manager">管理员账号:</th>
- <td><input type="text" name="username" value = "请输入用户名" maxlength = "16" onfocus = "if(this.value == '请输入用户名') this.value =''"></td>
- </tr>
- <tr>
- <th class="manager">请输入密码:</th>
- <td><input type="password" name="password" maxlength = "20"></td>
- </td>
- </tr>
- <tr>
- <td colspan = "2" align = "center">
- <input type="submit" name="submit" value="登 录">
- <input type="submit" value="注 册" >
- </td>
- </tr>
- </table>
- </form>
- </div>
- </body>
- </html>
|