53 lines
1.8 KiB
HTML
53 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Register</title>
|
|
<script src="js/semantic.min.js"></script>
|
|
<link type="text/css" rel="stylesheet" href="css/semantic.min.css">
|
|
<script src='https://www.google.com/recaptcha/api.js'></script>
|
|
</head>
|
|
<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>
|
|
<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>
|
|
<div class="ui input">
|
|
<input type="text" placeholder="Username" style="width:50em;">
|
|
</div>
|
|
<br><br>
|
|
<div class="ui input">
|
|
<input type="email" placeholder="Email" style="width:50em;">
|
|
</div>
|
|
<br><br>
|
|
<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>
|
|
<br><br>
|
|
<div class="g-recaptcha" data-sitekey="6Lc4xhMTAAAAAIaiF3yEWGbHRaGgMg4FHor61p1G"></div>
|
|
<br><br>
|
|
<button class="ui primary button" style="width:25em">
|
|
Submit
|
|
</button>
|
|
</center>
|
|
</body>
|
|
<html>
|