forked from wdi-sg/html_user_inputs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathga-acct-creation.html
More file actions
70 lines (66 loc) · 2.41 KB
/
ga-acct-creation.html
File metadata and controls
70 lines (66 loc) · 2.41 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
65
66
67
68
69
70
<!DOCTYPE html>
<html>
<head>
<title>General Assembly Account Creation</title>
<style>
div {
padding: 0px 0px 10px 0px;
}
</style>
</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.
<br>
<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>
</div>
<form action="success.html" method="GET">
<div>
<label for="city">City: </label>
<select name="city" id="city">City:
<option value="hongKong">Hong Kong</option>
<option value="london">London</option>
<option value="losAngeles">Los Angeles</option>
<option value="newYork">New York</option>
<option value="portland">Portland</option>
<option value="sanFrancisco">San Francisco</option>
<option value="seattle">Seattle</option>
<option value="singapore">Singapore</option>
</select>
</div>
<div>
<label for="course">Course: </label>
<label for="ux">UX</label>
<input type="radio" id="ux" name="course" value="ux">
<label for="ux">Web Dev</label>
<input type="radio" id="webdev" name="course" value="webdev">
</div>
<div>
<label for="name">Name: </label>
<input id="name" type="text" placeholder="John Smith">
</div>
<div>
<label for="email">Email: </label>
<input id="email" type="email" required>
</div>
<div>
<label for="password">Password: </label>
<input id="password" type="password" required>
</div>
<div>
<input id="checkbox" type="checkbox">
<label for="checkbox">Yes, subscribe me to the General Assembly student newsletter</label>
</div>
<div>
<input type="submit" value="Subscribe">
</div>
</form>
</body>
</html>