forked from LaunchCode-Education-Archived/hello-flask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinputs.html
81 lines (57 loc) · 1.79 KB
/
inputs.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
75
76
77
78
79
80
81
<!doctype html>
<html>
<body>
<style>
br {margin-bottom: 20px;}
</style>
<form method='POST'>
<label>type=text
<input name="user-name" type="text" />
</label>
<br>
<label>type=password
<input name="user-password" type="password" />
</label>
<br>
<label>type=email
<input name="user-email" type="email" />
</label>
<br>
<input name="shopping-cart-id" value="0129384" type="hidden" />
<br>
<label>Ketchup
<input type="checkbox" name="cb1" value="first-cb" />
</label>
<br>
<label>Mustard
<input type="checkbox" name="cb2" value="second-cb" />
</label>
<br>
<label>Small
<input type="radio" name="coffee-size" value="sm" />
</label>
<label>Medium
<input type="radio" name="coffee-size" value="med" />
</label>
<label>Large
<input type="radio" name="coffee-size" value="lg" />
</label>
<br>
<label>Your life story
<textarea name="life-story"></textarea>
</label>
<br>
<label>LaunchCode Hub
<select name="lc-hub">
<option value="kc">Kansas City</option>
<option value="mia">Miami</option>
<option value="ri">Providence</option>
<option value="sea">Seattle</option>
<option value="pdx">Portland</option>
</select>
</label>
<br>
<input type="submit" />
</form>
</body>
</html>