-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
44 lines (41 loc) · 1.99 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
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<title>LogIn and Sign Up Page</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="box">
<img src="icon.png">
<div class="page">
<div class="header">
<a id="login" class="active" href="#login">log in</a>
<a id="signup" href="#signup">Sign Up</a>
</div>
<div id="errorMsg"></div>
<div class="content">
<form class="login" name="loginForm" onsubmit="return validateLoginForm()" method="POST" action = 'notes_dashboard.html'>
<input type="text" name="name" id="logName" placeholder="Username">
<input type="password" name="password" id="logPassword" placeholder="Password">
<div id="check">
<input type="checkbox" id="remember">
<label for="remember">Remember Me</label>
</div>
<br><br>
<input type="submit" onClick="validation('login')" value="Log In">
<a href="forgot_password.html" style = "color: #707070;">Forgot Password?</a>
</form>
<form class="signup" name="signupForm" onsubmit="return validateSignupForm()" method="POST">
<input type="email" name="email" id="signEmail" placeholder="Email">
<input type="text" name="name" id="signName" placeholder="Username">
<input type="password" name="password" id="signPassword" placeholder="Password"><br>
<input type="submit" value="Sign Up">
</form>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<script src="index.js"></script>
</body>
</html>