forked from Parthiv-M/echo-wtfctf
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
129 lines (129 loc) · 5.6 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
<!DOCTYPE html>
<html>
<head>
<title>
wtfCTF | Manipal Information Security Team
</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta
name="description"
content="wtfCTF, the Capture The Flag event hosted by Manipal Information Security Team."
/>
<meta name="robots" content="index, follow" />
<meta name="author" content="Parthiv Menon, [email protected]" />
<meta
name="keywords"
content="ctf, cybersecurity, manipal, manipal institute of technology, clubs, student clubs, student, organization, capture the flag"
/>
<meta name="url" content="https://ctfstats.wearemist.in" />
<meta name="coverage" content="Worldwide" />
<meta name="target" content="all" />
<meta name="HandheldFriendly" content="True" />
<link rel="icon" href="favicon.ico" />
<link rel="canonical" href="https://ctfstats.wearemist.in" />
<meta name="reply-to" content="[email protected]" />
<!-- OG meta tags -->
<meta property="og:type" content="webpage" />
<meta
property="og:title"
content="wtfCTF | Manipal Information Security Team"
/>
<meta
property="og:description"
content="wtfCTF, the Capture The Flag event hosted by Manipal Information Security Team."
/>
<meta property="og:image" content="./assets/mist_og.png" />
<meta property="og:url" content="https://ctfstats.wearemist.in" />
<meta
property="og:site_name"
content="Manipal Information Security Team"
/>
<meta
name="twitter:title"
content="wtfCTF | Manipal Information Security Team"
/>
<meta
name="twitter:description"
content="wtfCTF, the Capture The Flag event hosted by Manipal Information Security Team."
/>
<meta name="twitter:image" content="./assets/mist_og.png" />
<meta name="twitter:site" content="@sudo_mist" />
<meta name="twitter:creator" content="@sudo_mist" />
<!-- importing google fonts -->
<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=Poppins:wght@200;800&display=swap" rel="stylesheet">
<!-- importing local stylesheets -->
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<div class="page-wrapper">
<div class="header">
<div class="brand-logo">
<div class="logo"></div>
</div>
</div>
<!-- uncomment this to use the countdown -->
<!-- <div class="countdown-wrapper">
<h3>wtfCTF 2022 starts in</h3>
<div id="countdown">
<ul>
<li><span id="days"></span>days</li>
<li><span id="hours"></span>Hours</li>
<li><span id="minutes"></span>Minutes</li>
<li><span id="seconds"></span>Seconds</li>
</ul>
</div>
<p>
Join the discord server
<span>
<a href="https://discord.gg/njddA5eq">NOW</a>
</span>
</p>
<a href="https://discord.gg/njddA5eq"><button class="join-button">Join</button></a>
</div> -->
<!-- countdown ends here -->
<div class="content-wrapper">
<div class="text-array">
<p class="last-ctf-date">wtfCTF, February 2022</p>
<p class="last-ctf-date">wtfCTF, February 2022</p>
<p class="last-ctf-date">wtfCTF, February 2022</p>
<p class="last-ctf-date">wtfCTF, February 2022</p>
<p>wtfCTF, February 2022</p>
<p class="last-ctf-date">wtfCTF, February 2022</p>
<p class="last-ctf-date">wtfCTF, February 2022</p>
<p class="last-ctf-date">wtfCTF, February 2022</p>
<p class="last-ctf-date">wtfCTF, February 2022</p>
</div>
<div class="stats-wrapper">
<div class="stats-card">
<div class="stats-number" id="questions"></div>
<div class="stats-param">questions</div>
</div>
<div class="stats-card">
<div class="stats-number" id="solves"></div>
<div class="stats-param">solves</div>
</div>
<div class="stats-card">
<div class="stats-number" id="users"></div>
<div class="stats-param">users</div>
</div>
<div class="stats-card">
<div class="stats-number" id="teams"></div>
<div class="stats-param">teams</div>
</div>
</div>
<div class="coming-soon">
<p>wtfCTF by</p>
<span></span>
<p class="dotto">⚬</p>
<p>We will be back</p>
<!-- <p>We are back</p> -->
</div>
</div>
</div>
<!-- importing local scripts -->
<script src="index.js"></script>
</body>
</html>