forked from primaulia/html_user_inputs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
skeleton.html
63 lines (63 loc) · 2.15 KB
/
skeleton.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>General Assembly Account Creation</title>
</head>
<body>
<img src="https://cdn.evbuc.com/eventlogos/170250867/gaflatlogo.png">
<h1>General Assembly Account Creation</h1>
<p>
Welcome to the General Assembly. General Assembly is a global institution training people all over the world in today's top technologies.
</p>
<p>
Please fill out the information below to create your General Assembly
account. Let us know what city you're in and what course
you're taking. This list is for all students. Please tell us what
city you're in and whether you're taking the Immersive User Experience (UX)
course or the Immersive Web Development course.
</p>
<form action="success.html" method="get">
<label for="city">City:
<select name="city">
<option value="HK">Hong Kong</option>
<option value="LN">London</option>
<option value="LA">Los Angeles</option>
<option value="NY">New York</option>
<option value="PO">Portland</option>
<option value="SF">San Francisco</option>
<option value="ST">Seattle</option>
<option value="SG">Singapore</option>
</select>
</label>
</form>
<br>
<form action="#" method="GET">
<label>Course:
<input type="radio" name="course" value="UX">
UX
</label>
<label>
<input type="radio" name="course" value="WD" checked>
Web Dev
</label>
<br></br>
<label for="name">Name</label>
<input id="name" type="text" name="name" value="name">
<br></br>
<label for="email">Email</label>
<input id="name" type="text" name="email" value="email">
<br></br>
<label for="password">Password</label>
<input id="name" type="text" name="password" value="password">
<br></br>
</form>
<label>
<input type="checkbox" name="yes" value="">
Yes, subscribe me to the General Assembly student newsletter
</label>
<form>
<input type="submit" value="Subscribe">
</form>
</body>
</html>