forked from 1797890817/JavaBase
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRequestForm.html
More file actions
75 lines (73 loc) · 1.96 KB
/
RequestForm.html
File metadata and controls
75 lines (73 loc) · 1.96 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>申请表</title>
</head>
<body style="background-color: pink">
<p>申请表</p>
<form action="apply" method="post">
<table>
<tr>
<td>姓名:</td>
<td><input name='username' type="text"><span> (最大32个字符)</span></td>
</tr>
<tr>
<td>密码:</td>
<td><input name="passwd" type="password"></td>
</tr>
<tr>
<td>照片:</td>
<td><input name="tupian" type="file" value="000000"></td>
</tr>
<tr>
<td colspan="2">感兴趣的职位:</td>
</tr>
<tr>
<td colspan="2"><input name="radio2" type="radio"
checked="checked"><span>Web设计</span> <input name="radio2"
type="radio"><span>Web开发</span></td>
</tr>
<tr>
<td colspan="2">向往的城市:<select>
<option value="0">请选择</option>
<option value="1" selected="selected">帝都</option>
<option value="2">上海</option>
<option value="3">深圳</option>
<option value="4">杭州</option>
<option value="5">其他</option>
</select>
</td>
</tr>
<tr>
<td colspan="2">协议:</td>
</tr>
<tr>
<td colspan="2"><textarea readonly="readonly">
求职信息必须真实!
</textarea></td>
</tr>
<tr>
<td colspan="2"><input name="checkbox" type="checkbox"
checked="checked"><span>我接受!</span></td>
</tr>
<tr>
<td colspan="2">经验 :<select>
<option value="1" selected="selected">无经验</option>
<option value="2">一年以上</option>
<option value="3">三年以上</option>
<option value="4">五年以上</option>
<option value="5">十年以上</option>
</select>
</td>
</tr>
<tr>
<td colspan="2"><input name="submit" type="submit" value="提交"
disabled="disabled">
<input
name="submit" type="reset"></td>
</tr>
</table>
</form>
</body>
</html>