forked from Dev-tanay/Rubik-Cube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheck-progress.html
44 lines (39 loc) · 1.39 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
<!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="profilepic.jpg" class="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="#">Exit</a>
<a href="#">Sign Out</a>
</div>
</div>
</header>
<div class="progress-container">
<h1>Your Rubik's Cube Progress</h1>
<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>