-
Notifications
You must be signed in to change notification settings - Fork 0
/
update.html
42 lines (42 loc) · 1.02 KB
/
update.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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>更新自己的信息</title>
</head>
<body>
<p>本页正在测试中</p>
<form accept-charset="utf-8" action="update.php" method="post" name="update">
<fieldset>
姓名
<input name="name" type="text" />
</fieldset>
<fieldset>
<legend>联系方式</legend>
<table>
<tbody>
<tr>
<td>邮箱</td>
<td><input name="email" type="text" /></td>
</tr>
<tr>
<td>手机</td>
<td><input name="mobile" type="text" /></td>
</tr>
<tr>
<td>微信号</td>
<td><input name="wechat" type="text" /></td>
</tr>
</tbody>
</table>
</fieldset>
<input id="studying" name="type" type="radio" value="studying" />
<label for="studying">升学</label>
<input id="working" name="type" type="radio" value="working" />
<label for="working">工作</label>
<fieldset></fieldset>
<input name="submit" type="submit" value="提交" />
<input name="reset" type="reset" value="清空" />
</form>
</body>
</html>