-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (57 loc) · 2.54 KB
/
Copy pathindex.html
File metadata and controls
66 lines (57 loc) · 2.54 KB
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
<!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">
<title>Join | Log in</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/header.css">
<link rel="stylesheet" href="./css/sidebar.css">
<link rel="stylesheet" href="./css/components.css">
<link rel="stylesheet" href="./css/login.css">
<script src="./js/login.js" type="module" defer></script>
</head>
<body>
<!-- Main Content -->
<main>
<!-- Logo -->
<img src="./assets/img/logo_blue.svg" alt="Logo" class="logo logo-anim" draggable="false">
<!-- Not a Join User -->
<div class="sign-in flex-row fade-in-delayed">
<span>Not a Join user?</span>
<button type="button" class="btn btn-primary" id="sign-up">Sign up</button>
</div>
<log-in class="fade-in-delayed">
<h1>Log in</h1>
<form id="submit-login" novalidate>
<!-- Email -->
<input-text class="inp">
<input type="text" id="login-email" placeholder="Email" class="login-email">
<span class="warn" id="login-email-warn">Combination of email and password is incorrect.</span>
</input-text>
<!-- Password -->
<input-text class="inp">
<input type="password" id="login-password" placeholder="Password" class="login-password">
</input-text>
<!-- Remember me -->
<div class="flex-row remember">
<input-checkbox class="check">
<label for="remember-me">
<input type="checkbox" name="remember-me" id="remember-me">
<span>Remember me</span>
</label>
</input-checkbox>
<a href="./forgot-password.html" draggable="false">Forgot Password</a>
</div>
<!-- Log in actions -->
<div class="login-actions-container flex-row">
<button type="submit" class="btn btn-primary login">Log in</button>
<button type="button" class="btn btn-secondary guest-login" id="guest-login">Guest Log in</button>
</div>
</form>
</log-in>
</main>
</body>
</html>