-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboard.html
More file actions
123 lines (122 loc) · 5.31 KB
/
dashboard.html
File metadata and controls
123 lines (122 loc) · 5.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, xinitial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="styles/headerandsidebar.css">
<link rel="stylesheet" href="styles/dashboard.css">
<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=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:wght@100;400;500;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="header">
<div class="header-left">
<h2>TypeRivals</h2>
</div>
<div class="header-right">
<div class="public-profile">
</div>
<img class="logout" src="icons/arrow-right-from-bracket-solid (1).svg">
</div>
</div>
<div class="flex">
<div class="sidebar">
<div class="side-bar-element" id="dashboard">
<img src="icons/house-svgrepo-com (2).svg">
<p>Dashboard</p>
</div>
<div class="side-bar-element" id="leaderboard">
<img src="icons/trophy-svgrepo-com.svg">
<p>Leaderboard</p>
</div>
<div class="side-bar-element" id="history">
<img src="icons/history-svgrepo-com (1).svg">
<p>History</p>
</div>
<div class="side-bar-element" id="blogs">
<img src="icons/book-open-svgrepo-com.svg">
<p>Blogs</p>
</div>
<div class="side-bar-element" id="social">
<img src="icons/people-svgrepo-com (2).svg">
<p>Social</p>
</div>
</div>
<div class="main-content">
<div class="welcome">
<div class="content">
<div class="heading">
<img src="icons/keyboard-regular (1).svg">
<h2>Welcome back, <span></span></h2>
</div>
<p>Ready to improve your typing speed? Your current best is <span>--</span> WPM. Challenge yourself to beat that record today!</p>
<div class="btns">
<button id="temporary">Rankings</button>
<button id="view-progress">View Progress</button>
</div>
</div>
<div class="img-container">
<img src="icons/keyboards-mod-musings-01.jpg">
</div>
</div>
<div class="take-test">
<h2>Take Test</h2>
<div class="difficulty-selecion">
<div class="difficulty-selection-card selected" id="easy" >
<img src="icons/star-rings-svgrepo-com.svg">
<div>
<h3>Easy</h3>
<p>30-50 WPM</p>
</div>
</div>
<div class="difficulty-selection-card" id="medium">
<img src="icons/sword-svgrepo-com.svg" alt="">
<div>
<h3>Medium</h3>
<p>50-80 WPM</p>
</div>
</div>
<div class="difficulty-selection-card" id="hard">
<img src="icons/sword-material-svgrepo-com.svg" alt="">
<div>
<h3>Hard</h3>
<p>80+ WPM</p>
</div>
</div>
</div>
<div class="time-selection">
<div class="column-flex">
<div class="time-selection-card">
<img src="icons/clock-regular.svg">
<h3>30 seconds</h3>
<p>Perferct for beginners</p>
</div>
<div class="btn-div"><button class="start-test" id="30">Start Test</button></div>
</div>
<div class="column-flex">
<div class="time-selection-card">
<img src="icons/clock-regular.svg">
<h3>1 minute</h3>
<p>Perferct for beginners</p>
</div>
<div class="btn-div"><button class="start-test" id="60">Start Test</button></div>
</div>
<div class="column-flex">
<div class="time-selection-card">
<img src="icons/clock-regular.svg">
<h3>2 minute</h3>
<p>Perferct for beginners</p>
</div>
<div class="btn-div"><button class="start-test" id="120">Start Test</button></div>
</div>
</div>
</div>
</div>
</div>
<script type="module" src="scripts/headerandsidebar.js"></script>
<script type="module" src="scripts/firebaseinit.js"></script>
<script type="module" src="scripts/dashboard.js"></script>
</body>
</html>