forked from wdi-sg/html_user_inputs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (64 loc) · 2.27 KB
/
index.html
File metadata and controls
64 lines (64 loc) · 2.27 KB
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
<!DOCTYPE html>
<html>
<head>
<title>General Assembly Account Creation</title>
</head>
<body>
<img src="general_assembly_logo.png" alt="general_assembly_logo">
<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">
<label for="select-box">City:</label>
<select name="select-box">
<option value="Hong Kong">Hong Kong</option>
<option value="London">London</option>
<option value="Los Angeles">Los Angeles</option>
<option value="New York">New York</option>
<option value="Portland">Portland</option>
<option value="San Francisco">San Francisco</option>
<option value="Seattle" selected="">Seattle</option>
<option value="Singapore">Singaporex</option>
</select>
<br>
<br>
<label >Course: </label>
<label>
<input type="radio" name="gender" value="UX" checked>
UX
</label>
<label>
<input type="radio" name="gender" value="Web Dev">
Web Dev
</label>
<br>
<br>
<label for="name">Name</label>
<input type="text" id="name">
<br>
<br>
<label for="email">Email</label>
<input type="email" id="email">
<br>
<br>
<label for="password">Password</label>
<input type="Password" id="password">
<br>
<br>
<input type="checkbox" id="subscribe" value="Yes" checked>
<label for="subscribe">Yes, subscribe me to the General Assembly student newsletter</label>
<br>
<br>
<input type="submit" name="success" value="Subscribe">
</form>
</body>
</html>