-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path居中 form表格.html
64 lines (62 loc) · 1.75 KB
/
居中 form表格.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="Generator" content="EditPlus®">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<title>表单验证</title>
</head>
<body>
<form method="post" name="form1"id="form1">
<table width="350"border="0"align="center"cellpadding="0"cellspacing="5">
<tbody>
<tr>
<td colspan="2"align="center">新用户注册</td>
</tr>
<tr>
<td width="40%"><label for="uid">用户名:</label></td>
<td width="60%"><input name="uid" type="text" id="uid"size="30"maxlength="10"></td>
</tr>
<tr>
<td>性别:</td>
<td>
<input name="gender"type="radio"id="gender"value="boy">
<label for="gender">男</label>
<input name="gender"type="radio"id="gender"value="girl">
<label for="gender">女</label>
</td>
</tr>
<tr>
<td>密码:</td>
<td><input name="psw1"type="password"id="psw1"size="30"></td>
</tr>
<tr>
<td><label for="psw2">确认密码:</label></td>
<td><input name="psw2"type="password"id="psw2"size="30"></td>
</tr>
<tr>
<td><label for="question">密码问题:</label></td>
<td><input name="question"type="text"id="question"size="30"></td>
</tr>
<tr>
<td><label for="question">密码答案:</label></td>
<td><input name="answer"type="text"id="answer"size="30"></td>
</tr>
<tr>
<td><label for="question">电子邮件:</label></td>
<td><input name="email"type="text"id="email"size="30"maxlength="50"></td>
</tr>
<tr>
<td> </td>
<td>
<input type="submit"name="submit"id="submit"value="注册"onClick="return check()">
<input type="reset"name="reset"id="reset" value="清除">
</td>
</tr>
</tbody>
</table>
</form>
</body>
</html>