-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
47 lines (40 loc) · 1.94 KB
/
signup.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html>
<head>
<title>See you in the mines!</title>
<link href="cloak.ico" rel="shortcut icon" type="image/x-icon">
<link rel="stylesheet" href="/css/signup.css">
<link rel="stylesheet" href="/css/nexus.css">
<body>
<div class="nav">
<h1 class="nav-title">Descent Nexus</h1>
<hr>
<a href="./index.html">Nexus</a>
<a href="./rdl.html">RDL</a>
<a href="./news.html">News</a>
<a href="#">Coming Soon</a>
<hr>
<a href="./login.html">Login</a>
<a href="./signup.html">Sign up</a>
<a href="./inbox.html">Notifications</a>
</div>
<form name="Account Creation" action="/DBConnector.php" method="POST">
<!--test-->
<div class="lightbox">
<div class="form-box">
<label for="pilot">Pilot:</label>
<input type="text" id="pilot" name="pilot" placeholder="Your Alias">
<br>
<label for="email">Email:</label>
<input type="email" id="email" name="email" placeholder="Your Email">
<br>
<label for="pilotPassword">Password:</label>
<input type="password" id="pilotPassword" name="pilotPassword" placeholder="Your Password">
<br>
<br>
<input type="submit" value="Join Nexus" class="left-align" style="background-color: transparent; color: black">
<input type="submit" value="Don't have an account?" class="left-align" style="background-color: transparent; color: black">
</form>
</body>
</head>
</html>