-
Notifications
You must be signed in to change notification settings - Fork 1
/
register.html
49 lines (39 loc) · 1.78 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
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Kotobna - Register</title>
<link rel="stylesheet" href="styles/register.css">
<link rel="shortcut icon" type="image/png" href="assets/logo/favicon.png">
</head>
<body style="background-color: #f1e5d9; font-family: 'Kumbh Sans', sans-serif;">
<link href="https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@300;400;700&display=swap" rel="stylesheet">
<!-- Banner -->
<img src="assets/logo/Header.jpg" width="100%">
<!-- Navigator -->
<div class="topNav">
<a href="home.html">Home</a>
<a href="bestSellers.html">Best Sellers</a>
<a href="allBooks.html">All Books</a>
<a href="requestBook.html">Request A Book</a>
<a href="aboutUs.html">About Us</a>
<a class="active myTransition" href="register.html">Register</a>
<a href="logout.html" id="logoutNav">Logout</a>
<a href="admin.html" id="adminNav">Admin</a>
</div>
<div class="welcome myTransitionLeft">
<h1>Welcome To Kotobna!<br>Join us now</h1>
</div>
<form autocomplete="on" name="regisForm" class="mainform myTransition" method="POST">
<h1>Register</h1>
<input type="text" name="fname" placeholder="First Name" id="fname">
<input type="text" name="sname" placeholder="Second Name" id="sname">
<input type="email" name="Email" placeholder="E-mail">
<input type="password" name="pass" placeholder="Password">
<input type="password" name="passConfirm" placeholder="Confirm Password">
<input type="button" value="Register Now" id="regisBtn" onclick="register()">
</form>
<script type="text/javascript" src="scripts/register.js"></script>
<script src="scripts/loggedChk.js"></script>
</body>
</html>