Skip to content
Open
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
54 changes: 54 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
<!DOCTYPE! html>
<html>
<img src="general_assembly_logo.png" alt="Nothing Here">
<head>
<title> GENERAL ASSEMBLY</title>
</head>

<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>
<br>
<p>Please fill out the information below to create your General Assembly account. Let us know 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" method="GET">

<label for="city">Choose a city:</label>
<select name="city" id="city">
<option value="Singapore">Singapore</option>
<option value="KL">KL</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="WEBDEV">
<label for="Webdev">Webdev</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" id="Subscribe" name="Subscribe" value="Subscribe">
<label for="Subcribe"> Yes subscribe to the General Assembly student newsletter</label>

<br><br>
<input type="submit" value="subscribe" >
</form>

</body>
</html>