-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (66 loc) · 3.44 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="./assets/img/logo-dark.png" type="image/png">
<title>Login | Join</title>
<link rel="stylesheet" href="./css/fonts.css">
<link rel="stylesheet" href="./css/variables.css">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/login.css">
<link rel="stylesheet" href="./css/animations.css">
<script src="./smallest_backend_ever/mini_backend.js"></script>
<script src="./js/script.js"></script>
<script src="./js/login-templates.js"></script>
<script src="./js/login.js"></script>
<script src="./js/login-templates.js"></script>
</head>
<body onload="initLogin()">
<div class="start-overlay"><img src="./assets/img/logo-big.svg" alt="Join Logo big" class="start-logo"></div>
<img src="./assets/img/logo-dark.png" alt="Join Logo" class="logo-login">
<header id="login_header" class="login-header">
<span>Not a Join user?</span>
<button class="btn"><a href="./sign-up.html">Sign up</a></button>
</header>
<section class="login-site">
<div id="login_content" class="login-content">
<div class="headline-container">
<h1 class="headline">Log in</h1>
<div class="login-headline-border"></div>
</div>
<form id="login_form" onsubmit="userLogin(); return false">
<div class="input border-bottom">
<input id="user_email" type="email" placeholder="Email" autocomplete="off" required>
<img src="./assets/img/login-email.png" alt="e-mail symbol">
</div>
<div class="check-user-data">
<div id="data_check" class="user-data-assign display-none">The email address or password is not correct.</div>
</div>
<div class="input border-bottom">
<input id="user_password" type="password" placeholder="Password" autocomplete="off" required>
<img id="user_password_icon" src="./assets/img/login-password.png" alt="password symbol">
<img id="user_password_hidden" onclick="passwordVisibility()" src="./assets/img/password-hidden.png" alt="password symbol" class="display-none">
<img id="user_password_visible" onclick="passwordVisibility()" src="./assets/img/password-visible.png" alt="password symbol" class="display-none">
</div>
<div class="input input-column ps-0">
<div>
<input id="remember_me" type="checkbox" name="remember me">
<label for="remember me">Remember me</label>
</div>
<a href="./forgot-password.html">Forgot my password</a>
</div>
<div class="login-btns-container">
<button type="submit" class="btn">Log in</button>
<button onclick="guestLogin()" class="btn-light">Guest log in</button>
</div>
</form>
</div>
<div id="join_user" class="login-header display-none">
<span>Not a Join user?</span>
<button class="btn"><a href="./sign-up.html">Sign up</a></button>
</div>
</section>
</body>
</html>