2015-12-23 23:03:33 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Register</title>
|
2015-12-24 00:09:18 +00:00
|
|
|
<script src="js/semantic.min.js"></script>
|
|
|
|
<link type="text/css" rel="stylesheet" href="css/semantic.min.css">
|
2015-12-23 23:03:33 +00:00
|
|
|
</head>
|
2015-12-24 01:36:03 +00:00
|
|
|
<body style="background-color: #EEEEEE;">
|
|
|
|
<div class="ui inverted menu" style="margin: -0.1em; background-color: #FA6900;">
|
|
|
|
<a class="item" href="./">Home</a>
|
|
|
|
<a class="item" href="./about.html">About</a>
|
|
|
|
<a class="item" href="./register.html">Register</a>
|
|
|
|
<div class="right menu">
|
|
|
|
<a class="item" href="./login.html">Login</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<center>
|
|
|
|
<h1 style="color: #69D2E7; font-size: 75px;">Register Yourself</h1>
|
|
|
|
<hr style="margin-left: 10em; margin-right: 10em;">
|
|
|
|
<br>
|
2015-12-24 02:11:25 +00:00
|
|
|
<div class="ui input">
|
|
|
|
<select name="type" id="type" data-width="auto">
|
|
|
|
<option value="1">US Middle/High School Student</option>
|
|
|
|
<option value="2">Middle/High School Teacher</option>
|
|
|
|
<option value="3">Non-US/Non-Student/Observer</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
<br><br>
|
2015-12-24 01:36:03 +00:00
|
|
|
<div class="ui input">
|
|
|
|
<input type="text" placeholder="Username" style="width:50em;">
|
|
|
|
</div>
|
|
|
|
<br><br>
|
2015-12-24 02:08:01 +00:00
|
|
|
<div class="ui input">
|
|
|
|
<input type="email" placeholder="Email" style="width:50em;">
|
|
|
|
</div>
|
|
|
|
<br><br>
|
2015-12-24 01:36:03 +00:00
|
|
|
<div class="ui input">
|
|
|
|
<input type="password" placeholder="Password" style="width:50em;">
|
|
|
|
</div>
|
|
|
|
<br><br>
|
|
|
|
<div class="ui input">
|
|
|
|
<input type="password" placeholder="Confirm Password" style="width:50em;">
|
|
|
|
</div>
|
2015-12-24 01:38:11 +00:00
|
|
|
<br><br>
|
|
|
|
<button class="ui primary button" style="width:25em">
|
|
|
|
Submit
|
|
|
|
</button>
|
2015-12-24 01:36:03 +00:00
|
|
|
</center>
|
2015-12-23 23:03:33 +00:00
|
|
|
</body>
|
|
|
|
<html>
|