-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
139 lines (128 loc) · 5.34 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
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Primary Meta Tags -->
<title>GDSCxAIT GCSJ Leaderboard</title>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="cache-control" content="no-store" />
<meta http-equiv="pragma" content="no-store" />
<link
href="https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/6.0.1/mdb.min.css"
rel="stylesheet"
/>
<link
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
<link rel="shortcut icon" type="image/x-icon" href="assets/gdscfavi.png" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm" crossorigin="anonymous"></script>
</head>
<style>
.GCSJ-title {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
@media (max-width: 768px) {
h3 {
font-size: 20px;
}
}
}
</style>
<body>
<nav class="navbar bg-body-tertiary">
<div class="container">
<a class="navbar-brand" href="#">
<img src="assets/gdsc_ait.png" alt="" width="300" height="35">
</a>
</div>
</nav>
<div class="container main-content">
<div class="GCSJ-title">
<img src="assets/cloudLg.png" alt="cloud logo" width="100" height="auto">
<h3>Cloud Leader Board</h3>
</div>
<div class="search-box ">
<form class="form-inline">
<input id="input" class="input-box form-control mr-sm-2" type="search" placeholder="Search" aria-label="Search">
</form>
</div>
<div class="container w-30 alert alert-primary" role="alert">
<center>Note: The score will be updated every day at 8 p.m</center>
</div>
<div class="container" style="overflow-y: scroll;">
<table class="table">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Name</th>
<th scope="col">Redemption Status</th>
<th scope="col">Course Completed</th>
<th scope="col">Skill Badges Completed</th>
<th scope="col">GenAI Completed</th>
<th scope="col">Total Completion</th>
</tr>
</thead>
<tbody id="gccp_body"></tbody>
</table>
</div>
</div>
<footer class="bg-dark text-center text-lg-start text-white">
<!-- Grid container -->
<div class="container p-4 ">
<!--Grid row-->
<div class="row my-4">
<center>
<!--Grid column-->
<div class="col-lg-3 col-md-6 mb-4 mb-md-0">
<div class="rounded-circle bg-white shadow-1-strong d-flex align-items-center justify-content-center mb-4 mx-auto" style="width: 150px; height: 150px;">
<img src="./assets/gdsc-logo.png" height="120" alt=""
loading="lazy" />
</div>
<p class="text-center" >Welcome to GDSC. We're a passionate tech community committed to learning, collaborating, and driving positive change. </p>
<ul class="list-unstyled d-flex flex-row justify-content-center">
<li>
<a class="text-white px-2" href="mailto:[email protected]">
<i class="fa-regular fa-envelope" style="color: #ffffff;"></i>
</a>
</li>
<li>
<a class="text-white px-2" href="https://www.instagram.com/gdsc_aitpune/">
<i class="fab fa-instagram"></i>
</a>
</li>
<li>
<a class="text-white ps-2" href="https://discord.gg/pgMYrUVPmB">
<i class="fa-brands fa-discord" style="color: #ffffff;"></i>
</a>
</li>
<li>
<a class="text-white ps-2" href="https://www.linkedin.com/company/gdsc-aitpune/">
<i class="fa-brands fa-linkedin-in" style="color: #ffffff;"></i>
</a>
</li>
</ul>
</div>
<!--Grid column-->
</center>
</div>
<!--Grid row-->
</div>
<!-- Grid container -->
<!-- Copyright -->
<div class="text-center p-3" style="background-color: rgba(0, 0, 0, 0.2)">
© 2023 Copyright:
<a class="text-white" href="https://github.com/sahilkamate03">sahilkamate03</a>
</div>
<!-- Copyright -->
</footer>
<!-- End of .container -->
<script src="script.js"></script>
</body>
</html>