-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (46 loc) · 1.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link id="fav" rel="shortcut icon" type="image/x-icon" href="data:image/x-icon;,">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<link rel="stylesheet" href="./static/style.css">
<script src="https://d3js.org/d3.v6.min.js"></script>
<title>Graphql</title>
</head>
<body>
<div class="nav">
<button type="button" id="logout" class="btn">logout</button>
</div>
<div id="background"></div>
<div class="graphs" style="display: none;">
<h2>Technologies</h2>
<svg id="techChart" width="400" height="400" viewBox="0 0 400 400"></svg>
<h2>Tech Skills</h2>
<svg id="skillChart" width="400" height="400" viewBox="0 0 400 400"></svg>
</div>
<div class="user"></div>
<div class="wrapper-login">
<h2>Login Form</h2>
<form id="loginForm">
<div class="input-box">
<span class="icon"><i class="bx bxs-ghost"></i></span>
<input type="text" name="logUsername" id="logUsername" required>
<label>Enter your 01.kood.tech login or e-mail</label>
</div>
<div class="input-box">
<span class="icon"><i class="bx bxs-lock-alt"></i></span>
<input type="password" id="logPassword" name="logPassword" required>
<label>Enter your password</label>
</div>
<input type="hidden" value="login">
<button type="submit" id="login" class="btn">Login</button>
</form>
<p id="error-message" style="color: red;"></p>
</div>
<script type="module" src="./js/login.js"></script>
<script type="module" src="./js/skills.js"></script>
<script type="module" src="./js/experience.js"></script>
</body>
</html>