-
Notifications
You must be signed in to change notification settings - Fork 0
/
register.html
34 lines (31 loc) · 1.11 KB
/
register.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Log in.</title>
<link rel="stylesheet" href="assets/css/register.css">
<link rel="icon" href="assets/images/logo/img.png">
</head>
<body>
<div class="navbar">
<h3>Road to Achive Dreams</h3>
<div>
<button class="toggle" id="mode-toggle">Toggle Mode</button>
</div>
</div>
<h1 id="error"></h1>
<div class="content">
<form id="form" action="home.html" method="POST">
<img src="assets/images/logo/img.png" alt="there was an image.">
<h2>Register</h2>
<input id="firstname" type="text" placeholder="First name"><br>
<input id="lastname" type="text" placeholder="Last name"><br>
<input id="email_username" type="text" placeholder="Email or Username"><br>
<input id="password" type="password" placeholder="Password"><br>
<button>Register</button>
</form>
</div>
<script src="./javascript/register.js"></script>
</body>
</html>