forked from arpitghura/typing-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile.html
96 lines (90 loc) · 3.58 KB
/
profile.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!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="shortcut icon" href="assets/images/timer.png" type="image/x-icon">
<link rel="stylesheet" href="assets/css/index.css">
<link rel="stylesheet" href="assets/css/profile.css">
<link rel="stylesheet" href="assets/css/practice.css">
<link rel="stylesheet" href="assets/css/dark.css">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<title>Profile - Typing Master</title>
</head>
<body class="light-mode">
<nav>
<div class="navbar">
<div class="brand">
<a href="./index.html" class="brand-name">Typing Test</a>
</div>
<div class="navigation">
<ul class="main-menu">
<li class="nav-item"><a href="practice.html" class="nav-item-link">Practice</a></li>
<li class="nav-item"><a href="about.html" class="nav-item-link">About</a></li>
<li class="nav-item"><a href="profile.html" class="nav-item-link">Profile</a></li>
</ul>
</div>
<div class="nav-right">
<div class="github-icon">
<a href="https://github.com/arpitghura/typing-test" class="nav-item-link"><i class='bx bx-sm bxl-github'></i></a>
</div>
<i id="icon1" onclick="toggleLightDarkMode()" class="bx bx-moon dark-btn" style="font-size: x-large;"></i>
</div>
<div class="mobile-nav">
<div class="bar1"></div>
<div class="bar2"></div>
<div class="bar3"></div>
</div>
</div>
</nav>
<section id="hero element2">
<div class="container">
<h1 class="heading">Profile Details</h1>
<h2 class="subtitle" id="userName"></h2>
<p id="navigate-user-text"></p>
</div>
<div class="history">
<h2 class="history-heading">History</h2>
<div class="history-table">
<table>
<thead>
<tr>
<th>Speed (wpm)</th>
<th>Time Taken (Minutes)</th>
<th>Difficulty Level</th>
</tr>
</thead>
<tbody id="historyTableBody">
</tbody>
</table>
</div>
<div class="hr"></div>
<div class="history-avg">
<table>
<thead>
<tr>
<th>Average Speed (wpm)</th>
<th>Average Time Taken (Minutes)</th>
</tr>
</thead>
<tbody id="avgTableBody">
</tbody>
</table>
</div>
<button id="historyResetBtn">Reset Data</button>
</div>
</section>
<footer>
<p>
Made with ♥ by Arpit Ghura. All Rights Reserved ©
<span id="copyright">
<script>document.getElementById('copyright').appendChild(document.createTextNode(new Date().getFullYear()))</script>
</span>
</p>
</footer>
<script src="assets/js/profile.js"></script>
<script src="assets/js/index.js"></script>
<script src="assets/js/dark.js"></script>
</body>
</html>