-
Notifications
You must be signed in to change notification settings - Fork 0
/
register.html
42 lines (42 loc) · 1.63 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
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Register</title>
<link rel="stylesheet" type="text/css" href="styles.css">
<script src="password.js" defer></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</head>
<body>
<nav id="navbar">
<ul>
<li class="dropdown">
<a href="index.html" class="dropbtn">Home</a>
<div class ="dropdown-content">
</div>
</li>
<li class="dropdown">
<a href="#" class="dropbtn">Account</a>
<div class="dropdown-content">
<a href="login.html">Login</a>
<a href="register.html">Register</a>
</div>
</li>
</ul>
</nav>
<h1>Account Registration</h1>
<div id="register-div">
<form action="registration.php" method="POST" enctype="multipart/form-data" name="Registration Form" id="form">
<label for="username" class="label">Username:</label><br>
<input type="text" id="username" name="username" required> <br> <br>
<label for="password" class="label">Password:</label> <br>
<input type="password" id="password" name="password" required> <br> <br>
<label for="confirmpassword" class="label">Confirm Password:</label> <br>
<input type="password" id="confirmpassword" name="confirmpassword" onChange="checkPasswordMatch()" required>
<div id="divCheckPasswordMatch" style="color: white;"></div> <br> <br>
<input type="submit" value="Register" name="register" id="register"> <br> <br>
</form>
</div>
</body>
</html>