-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
156 lines (150 loc) · 5.74 KB
/
index.html
File metadata and controls
156 lines (150 loc) · 5.74 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!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</title>
<!--CSS-FILES-->
<link rel="stylesheet" href="css/nav.css" />
<link rel="stylesheet" href="css/index.css" />
<link rel="stylesheet" href="css/overall.css" />
<link rel="stylesheet" href="css/footer.css" />
<!--JS-FILES-->
<script src="js/include.js"></script>
<script src="js/overall.js"></script>
<script src="js/mini_backend.js"></script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Varela+Round&display=swap"
rel="stylesheet"
/>
</head>
<body onload="initIndex()">
<div class="index-container">
<div class="login-container">
<div class="login-form-content">
<div class="content-container">
<img class="programm-logo" src="img/logo.png" />
<div>
<h1 class="index-title">Welcome to</h1>
<label class="title">JOIN</label>
<label class="index-sub-title">Kanban-Board</label>
</div>
</div>
</div>
<div id="form-c" class="login-form-container">
<form id="login-form" onsubmit="login(event)">
<div>
<h2 class="content-title">Login into JOIN</h2>
<label class="gray-look sub-title"
>Enter your login details blow.</label
>
</div>
<div class="input-group">
<label class="gray-look">EMAIL-ADDRESS</label>
<input
id="login-email"
class="validation index-input-style1"
type="text"
placeholder="example@join.com"
/>
<small id="login-email-hint" class="visibility">err</small>
</div>
<div class="input-group">
<label class="gray-look">PASSWORD</label>
<input
id="login-password"
class="validation index-input-style2"
type="password"
placeholder="Enter your password"
/>
<small id="login-pw-hint" class="visibility">err</small>
</div>
<div class="error-full" id="error-full"></div>
<div class="form-end">
<button class="login-submit-btn" type="submit">Sign in</button>
<a class="without-login" href="board.html">without login</a>
</div>
</form>
<div class="create-account">
<label class="gray-look sub-title">Don't have an account?</label>
<button
onclick="openRegisterWindow(event)"
class="create-account-btn gray-look"
>
Create Account
</button>
</div>
<label class="copy">© 2021 gruppe-99.developerakademie.com</label>
<div id="register-window" class="overlay">
<form id="register-form" onsubmit="validateRegister(event)">
<div class="register-form-container">
<h3 class="content-title">Register</h3>
<label class="gray-look sub-title"
>Enter your login details blow.</label
>
<div class="input-group">
<label class="gray-look">FIRST NAME</label>
<input
id="register-firstname"
class="validation index-input-style2"
type="text"
placeholder="First Name"
/>
<small id="fname-hint" class="visibility">err</small>
</div>
<div class="input-group">
<label class="gray-look">LAST NAME</label>
<input
id="register-lastname"
maxlength="13"
class="validation index-input-style1"
type="text"
placeholder="Last Name"
/>
<small id="lname-hint" class="visibility">err</small>
</div>
<div class="input-group">
<label class="gray-look">EMAIL-ADDRESS</label>
<input
id="register-email"
class="validation index-input-style1"
type="text"
placeholder="example@join.com"
/>
<small id="email-hint" class="visibility">err</small>
</div>
<div class="input-group">
<label class="gray-look">PASSWORD</label>
<input
id="register-password"
class="validation index-input-style1"
type="password"
placeholder="Enter your password"
/>
<small id="pw-hint" class="visibility">err</small>
</div>
<div class="input-group">
<input
type="submit"
class="login-submit-btn"
value="Register"
/>
</div>
</div>
</form>
<img
onclick="closeRegisterWindow(event)"
class="close-icon"
src="img/close.png"
/>
<label class="copy">© 2021 gruppe-99.developerakademie.com</label>
</div>
</div>
</div>
</div>
<script src="js/index.js"></script>
</body>
</html>