-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
97 lines (84 loc) · 4.68 KB
/
signup.html
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>图书信息管理系统</title>
<style>
html,body {
width: 100%;
height: 100%;
background-color: #016aa9;
overflow: hidden;
}
.style{
color: #000000;
font-size: 12px;
}
</style>
</head>
<body>
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
<table width="962" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="235" background="images/login_03_2.jpg"> </td>
</tr>
<tr>
<td height="53">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="394" height="53" background="images/login_05.gif"> </td>
<td width="206" background="images/login_06.gif">
<form action="signup.php" method="post">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="16%" height="25">
<div align="right">
<span class="style">用户</span>
</div>
</td>
<td width="57%" height="25">
<div align="center">
<input type="text" name="textfield" style="width:105px; height:17px; background-color:#292929; border:solid 1px #7dbad7; font-size:12px; color:#6cd0ff">
</div>
</td>
<td width="27%" height="25"> </td>
</tr>
<tr>
<td height="25">
<div align="right">
<span class="style">密码</span>
</div>
</td>
<td height="25">
<div align="center">
<input type="password" name="textfield2" style="width:105px; height:17px; background-color:#292929; border:solid 1px #7dbad7; font-size:12px; color:#6cd0ff">
</div>
</td>
<td height="25">
<div align="left">
<input type="submit" name="login" value="登录" style="cursor:pointer;background: black;color:white;outline: none;border:1px solid black;font-size:14px;">
</div>
</td>
</tr>
</table>
</form>
</td>
<td width="362" background="images/login_07.gif"> </td>
</tr>
</table>
</td>
</tr>
<tr>
<td height="213" background="images/login_08.gif" style="position: relative">
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>