-
Notifications
You must be signed in to change notification settings - Fork 155
/
Copy pathcheck-progress.html
78 lines (72 loc) · 2.36 KB
/
check-progress.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" />
<title>Check Progress</title>
<link rel="stylesheet" href="progress.css" />
</head>
<body>
<header class="header">
<a href="About.html" class="btn--about">About Us</a>
<div class="profile-menu">
<button class="profile-btn">
<img
src="./images/profilepic.jpg"
class="profile-pic"
id="main-profile-pic"
/>
</button>
<div class="dropdown-content">
<a href="edit-profile.html">Edit Profile</a>
<a href="check-progress.html">Check Progress</a>
<a href="settings.html">Settings</a>
<a href="index.html">Exit</a>
<a href="#">Sign Out</a>
</div>
</div>
</header>
<div class="progress-container">
<h1>Your Rubik's Cube Progress</h1>
<div id="no-progress"></div><br>
<div class="progress-stats">
<div class="progress-box">
<h3>Total Solves</h3>
<p id="total-solves">0</p>
</div>
<div class="progress-box">
<h3>Best Time</h3>
<p id="best-time">NA</p>
</div>
<div class="progress-box">
<h3>Average Time</h3>
<p id="average-time">NA</p>
</div>
<div class="progress-box">
<h3>Types of Cubes Solved</h3>
<p id="cube-types">3x3</p>
</div>
<div class="progress-box">
<h3>Latest Solves</h3>
<ul id="recent-solves">
<!-- List of recent solves will be inserted here -->
</ul>
</div>
<h1>Your Rubik's Cube Progress</h1>
<div id="no-progress"></div>
<br />
<div class="progress-stats">
<div>Total Solves: <span id="total-solves">--</span></div>
<div>Best Time: <span id="best-time">--</span></div>
<div>Average Time: <span id="average-time">--</span></div>
<div>
Types of Cubes Solved: <span id="cube-types">3x3, 4x4, 5x5</span>
</div>
<div>Latest Solves:</div>
<ul id="recent-solves">
<!-- List of recent solves will be inserted here -->
</ul>
</div>
</div>
<script src="progress.js"></script>
</body>
</html>