forked from livovil/pythonweb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdl.html
59 lines (59 loc) · 1.37 KB
/
dl.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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="Generator" content="EditPlus®">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<title>Document</title>
</head>
<body>
<h1>增加管理员</h1>
<form action="" method="">
<table>
<tr>
<td>姓名 :</td>
<td><input type="text" name="uname" maxlength="10"></td>
<td>十个字符以内</td>
</tr>
<tr>
<td>密码 :</td>
<td><input type="password" name="upwd" maxlength="10"></td>
<td>十个字符以内</td>
</tr>
<tr>
<td>性别 :</td>
<td>
<input type="radio" name="gender" value="female">女士
<input type="radio" name="gender" value="male">男士
</td>
<td></td>
</tr>
<tr>
<td>角色 :</td>
<td>
<input type="checkbox" name="admit" value="superadmit">超级管理员
<br>
<input type="checkbox" name="admit" value="billadmit">账单管理员
</td>
<td>至少选择一个角色</td>
</tr>
<tr>
<td>头像 :</td>
<td><input type="file" name="uimg"></td>
<td></td>
</tr>
<tr>
<td></td>
<td>
<input type="submit">
<!-- value="保存" value="重置" -->
<input type="reset">
</td>
<td></td>
</tr>
</table>
</form>
</body>
</html>