-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpage.php
More file actions
44 lines (43 loc) · 1.7 KB
/
Copy pathpage.php
File metadata and controls
44 lines (43 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
header("Content-Type: text/html; charset=utf-8");
?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GB2312" />
<title>登陆页面</title>
<body>
<div>
<div id="main_contaier">
<div id="loginBox">
<form action="login.php" method="post">
<table id="loginInputBox">
<tr>
<td><div class="label">用户名:</div></td>
<td colspan="2"><input name="id" type="text" tabindex="1" /></td>
<td rowspan="2"><input type="submit" value="登 录" tabindex="4"/></td>
</tr>
<tr>
<td ><div class="label">密 码:</div></td>
<td colspan="2"><div><input name="pwd" type="password" tabindex="2"/></div></td>
</tr>
<tr>
<td><div class="label">验证码:</div></td>
<td style=" width: 75px;"><input name="xdvfb" tabindex="3"/></td>
<td style="text-align: left; width: 160px;">
<div style="height:20px;margin-left:5px;margin-top:10px;float:left;">
<img id="chkcode" alt="验证码" src="./Captcha.php"/>
</div>
<div style="float:right;font-size:10px;margin-top:5px;">
<a style="line-height:30px;margin-top:10px;font-size:13px;font:宋体;" href="javascript:void(0);"
onclick="document.getElementById('chkcode').src='./Captcha.php?r='+Math.random()">看不清,换一张</a>
</div>
</td>
</tr>
</table>
</form>
</div>
</div>
</div>
</body>
</html>