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
60 changes: 60 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>General Assembly Create Account</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>

<div>
<form action="success.html" method="post">
<label>
City:
<select class="" name="">
<option value="">Hong Kong</option>
<option value="">London</option>
<option value="">Los Angeles</option>
<option value="">New York</option>
<option value="">Portland</option>
<option value="">San Francisco</option>
<option value="">Seattle</option>
<option value="">Singapore</option>
<option value="">Hong Kong</option>
</select>
</label>
</div>
<label for="Account Creation">
Course:
<input type="radio">
UX
</label>
<label>
<input type="radio">
Web Dev
</label>
</div>
<div>
<label class="">
Name: <input type="text" name="" value=""><br>
Email: <input type="email" name="" value=""><br>
Password: <input type="password" name="" value=""><br>
</label>
</div>
<div>
<input type="checkbox">Yes, subscribe me to the General Assembly student newsletter<br>
<button name="Subscribe">Subscribe</button>
</div>
</form>
</body>
</html>
92 changes: 61 additions & 31 deletions skeleton.html
Original file line number Diff line number Diff line change
@@ -1,35 +1,65 @@
general_assembly_logo.png
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>General Assembly Create Account</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>

General Assembly Account Creation
<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>

Welcome to the General Assembly. General Assembly is a global
institution training people all over the world in today's top
technologies.
<div>
<form action="success.html" method="post">
<label>
City:
<select class="" name="">
<option value="">Hong Kong</option>
<option value="">London</option>
<option value="">Los Angeles</option>
<option value="">New York</option>
<option value="">Portland</option>
<option value="">San Francisco</option>
<option value="">Seattle</option>
<option value="">Singapore</option>
<option value="">Hong Kong</option>
</select>
</label>
</div>
<label for="Account Creation">Course:
<input type="radio">
UX
</label>
<label>
<input type="radio">
Web Dev
</label>
<br>
<br>
</div>
<div>
<label>
Name: <input type="text" name="" value="">
Email: <input type="email" name="" value="">
Password: <input type="password" name="" value="">
I love coding.
</label>
</div>
<div>
<input type="submit" value="Submit">
<input type="checkbox">Yes, subscribe me to the General Assembly student newsletter<br>
<button name="Subscribe">Subscribe</button>
</div>
</form>

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.

City:
Hong Kong
London
Los Angeles
New York
Portland
San Francisco
Seattle
Singapore

Course:
(0) UX
( ) Web Dev

Name: _________
Email: _________
Password: *********

[] Yes, subscribe me to the General Assembly student newsletter

[Subscribe]
</body>
</html>