-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
64 lines (60 loc) · 1.86 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>JGEC GDSC | Google Study Jam 2023</title>
<link rel="icon" type="image/x-icon" href="./images/favicon.png">
<link rel="stylesheet" href="style.css" />
</head>
<body>
<img class="centre" src="./images/GDSC JGEC.png" />
<div id="header">
<h1>
Google Cloud Study Jam 2023
</h1>
<h2>
LEADERBOARD
</h2>
<form id="searchForm">
<input type="text" id="searchInput" name="searchInput" placeholder="Enter your Name"/>
<button type="submit" value="Search" id="searchButton">search</button>
</form>
</div>
<div id="table-container">
<table id="resultsTable" class="styled-table">
<thead>
<tr>
<th>Serial Number</th>
<th>Student Name</th>
<th>Enrolment Status</th>
<th># of Courses Completed</th>
<th># of Skill Badges Completed</th>
<th># of GenAI Game Completed</th>
<th>Total Completions of both Pathways</th>
<!-- <th>Redemption Status</th> -->
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<style>
footer {
text-align: center;
padding: 2px;
background-color: #24645dfa;
color: white;
}
</style>
</head>
<body>
<footer>
<p>Made for the Cloud Enthusiats of JGEC by Google Developer Students Club<br>
<a style="color: aliceblue;" href="https://gdscjgec.github.io/pages/home.html">GDSC | JGEC</a></p>
</footer>
<button onclick="topFunction()" id="myBtn" title="Go to top">↑</button>
</body>
<script src="index.js"></script>
<script src="confetti.js"></script>
</html>