-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfall15pickup.html
74 lines (71 loc) · 2.58 KB
/
fall15pickup.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
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE>
<head>
<meta http-equiv="Content-Type" content="text/html"; charset="utf-8" />
<title>Fall Pickup</title>
<link rel="stylesheet" href="pickup.css">
</head>
<form action="pickup.php" method="post" />
<h2><center>图森华人基督教会2015年秋季学期新生接机</center></h2>
<!-- <h5><center>(请用英文填写)</center></h5> -->
<h4><center>*必填项</center></h4>
<div>
<label for="name">姓名(拼音)*:</label>
<input type="text" required name="name" id="name" />
</div>
<div>
<label>性别*:</label>
<input type="radio" required name="gender" id="r1" value="Male" /> 男
<input type="radio" required name="gender" id="r2" value="Female" /> 女
</div>
<div>
<label for="email">电子邮件*:</label>
<input type="email" required name="email" id="email"/>
</div>
<div>
<label for="airline">飞往图森的航班公司*:</label>
<input type="text" required name="airline" id="airline" />
</div>
<div>
<label for="flightnum">航班号*:</label>
<input type="text" required name="flightnum" id="flightnum" />
</div>
<div>
<label for="arrivetime">到达时间(图森本地时间)*:<br>(月/日/年,小时:分钟:AM/PM)</label>
<input type="datetime-local" required name="arrivetime" id="arrivetime" />
</div>
<div>
<label for="phone-china">国内电话(numbers only):</label>
<input type="tel" name="phone-china" id="phone-china" pattern="\d+" />
</div>
<div>
<label for="phone-us">美国电话(如果有的话):</label>
<input type="tel" name="phone-us" id="phone-us" pattern="\d+" />
</div>
<div>
<label for="wechat">微信或QQ:</label>
<input type="text" name="wechat" id="wechat" />
</div>
<div>
<label for="address">到达Tucson后的住宿地址:</label>
<input type="text" name="address" id="address" />
</div>
<div>
<label for="num-large-bags">大件行李数目:</label>
<input type="text" name="num-large-bags" id="num-large-bags" />
</div>
<div>
<label for="num-small-bags">小件行李数目:</label>
<input type="text" name="num-small-bags" id="num-small-bags" />
</div>
<div>
<label for="notes">备注:</label>
<textarea name="notes" id="notes" /></textarea>
</div>
<!-- A hidden field used to protect the form from spam robots. -->
<div>
<textarea style="display:none;" name="hidden-field" id="hidden-field" /></textarea>
</div>
<div class="button">
<button type="submit" name="submit" id="submit">提交</button>
</div>
</form>