-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (32 loc) · 1.13 KB
/
index.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">
<title>BinkNote-Login</title>
<link rel="stylesheet" href="css/login.css">
</head>
<body>
<div class="mainContainer">
<div class="loginForm">
<div class="loginHeader">
<h2>LOGIN TO YOUR BINK-NOTE</h2>
</div>
<div class="loginBody">
<label for="userName"><b>Username</b></label>
<input type="text" placeholder="Enter Username" id="username" required>
<label for="password"><b>Password</b></label>
<input type="password" placeholder="Enter Password" id="password" required>
<button id="login" onclick="login()">Login</button><button id="register" onclick="navigateToRegister()">Register</button>
</div>
</div>
</div>
<script src="js/navigate.js"></script>
<script src="js/login.js" defer></script>
<script src="js/user.js" defer></script>
<script src="js/mainboard.js" defer></script>
<script src="js/io.js" defer></script>
<script src="js/board.js" defer></script>
<script src="js/registration.js" defer></script>
<script src="js/note.js" defer></script>
</body>
</html>