Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 62 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
<!DOCTYPE html>

<html>

<head>

<title>General Assembly Account Creation</title>

</head>

<body>

<img src="general_assembly_logo.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>

<br>

<form action="success.html">
<label>City:</label>
<select name="cities" id="cities">
<option value="please select">please select</option>
<option value="seattle">Seattle</option>
<option value="new york">New York</option>
<option value="dallas">Dallas</option>
<option value="california">California</option>
</select><br><br>

<label>Course:</label>
<input type="radio" name="course" value="UX">
<label for="UX">UX</label>
<input type="radio" name="course" value="Web Dev">
<label for="Web Dev">Web Dev</label><br><br>

<label>Name:</label>
<input type="text" name="name"><br><br>

<label>Email:</label>
<input type="email" name="email"><br><br>

<label>Password:</label>
<input type="password" name="password"><br><br>

<input type="checkbox" name="subscribe" value="yes" required>
<label for="subscription"> Yes, subscribe me to the General Assembly student newsletter</label><br><br>

<input type="submit" value="Subscribe">
</form>

</body>

</html>
4 changes: 3 additions & 1 deletion success.html
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
<title>Successfully Subscribed!</title>

<h1>Success!</h1>
<p>You're all signed up.</p>
<p>You're all signed up.</p>