-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathotheruserprofile.html
More file actions
74 lines (74 loc) · 2.84 KB
/
otheruserprofile.html
File metadata and controls
74 lines (74 loc) · 2.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/headerandsidebar.css">
<link rel="stylesheet" href="styles/publicprofile.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">
<title>Public Profile</title>
</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" alt="">
</div>
</div>
<div class="verify-user-pp-page pp-page-main-content">
<div class="progress-div">
<progress></progress>
</div>
<!-- <div class="personal-info">
<div class="pp-img-container">xx`
<img src="icons/davidjmalan.jpeg">
</div> -->
<!-- <div class="info-wrapper">
<h2>Username</h2>
<div class="extra-personal-info" id="city">
<img src="icons/gps-svgrepo-com (3).svg" alt="">
<p>Lorem, ipsum</p>
</div>
<div class="extra-personal-info" id="email">
<img src="icons/envelope-regular.svg" alt="">
<p>loremipsum@gmail.com</p>
</div>
</div>
</div>
<div class="stat-cards">
<div class="statcard" id="bestWpm">
<img src="icons/trophy-solid.svg" alt="">
<h1></h1>
<p>Best WPM</p>
</div>
<div class="statcard" id="LastAccuracy">
<img src="icons/bullseye-solid.svg" alt="">
<h1></h1>
<p>Last Accuracy</p>
</div>
<div class="statcard" id="LastWpm">
<img src="icons/trophy-solid.svg" alt="">
<h1></h1>
<p>Last WPM</p>
</div>
<div class="statcard" id="totalTestsTaken">
<img src="icons/keyboard-regular (1).svg" alt="">
<h1></h1>
<p>Tests Taken</p>
</div>
</div>
<div class="contest-history">
</div> -->
</div>
<script type="module" src="scripts/firebaseinit.js"></script>
<script type="module" src="scripts/headerandsidebar.js"></script>
<script type="module" src="scripts/otheruserprofile.js"></script>
</body>
</html>