Skip to content

Commit 2d1868b

Browse files
committed
By Zhao Kun Peng
1 parent 7a2268a commit 2d1868b

1 file changed

Lines changed: 43 additions & 0 deletions

File tree

HTML/06.html

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Personal data</title>
6+
</head>
7+
<body>
8+
<form action="" method="post" enctype="multipart/form-data">
9+
学号:<input type="text" name="Student ID" placeholder="请输入学号">
10+
<br>
11+
密码:<input type="password" name="password" placeholder="请输入密码">
12+
<br>
13+
性别:<input type="radio" name="gender" value="0" checked>
14+
<input type="radio" name="gender" value="1"><br>
15+
爱好:<br>
16+
<input type="checkbox" name="habbit[]" value="0" >篮球 <br>
17+
<input type="checkbox" name="habbit[]" value="1">足球 <br>
18+
<input type="checkbox" name="habbit[]" value="2">乒乓球 <br>
19+
<input type="checkbox" name="habbit[]" value="3">其他 <br>
20+
专业:
21+
<select name="profession" id="">
22+
<option value="0">材料物理化学</option>
23+
<option value="1">材料学</option>
24+
<option value="2">材料工程</option>
25+
</select>
26+
个人照片:请选择文件上传 <input type="file" name="personal picture"><br>
27+
个人信息说明:<br>
28+
<textarea name="text" id="" cols="30" rows="10" placeholder="请输入需要额外添加的信息"></textarea>
29+
<br>
30+
<input type="submit" value="确定"><br>
31+
<button>提交</button>
32+
<br>
33+
<input type="reset" value="重置">
34+
<input type="hidden" name="id" value="0">
35+
36+
37+
38+
39+
</form>
40+
41+
</body>
42+
43+
</html>

0 commit comments

Comments
 (0)