-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (82 loc) · 3.43 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
<!DOCTYPE html>
<!--
Copyright (c) 2019 Nadav Tasher
https://github.com/NadavTasher/Template/
-->
<html row lang="en">
<head>
<!-- Charset -->
<meta charset="UTF-8"/>
<!-- App Description -->
<meta name="description" content="Information security team consisting of 6 members.">
<!-- Viewport -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=5, user-scalable=yes, minimal-ui"/>
<!-- Mobile -->
<meta name="theme-color" content="#FFFFFF"/>
<meta name="mobile-web-app-capable" content="yes">
<!-- Mobile Safari -->
<meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="apple-mobile-web-app-title" content="KipodAfterFree | Team"/>
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"/>
<!-- Icons -->
<link rel="icon" href="resources/images/icons/icon.png"/>
<link rel="apple-touch-icon" href="resources/images/icons/icon_apple.png"/>
<!-- Stylesheets -->
<link rel="stylesheet" href="sources/app.css"/>
<link rel="stylesheet" href="resources/styles/style.css"/>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@500"/>
<!-- Scripts -->
<script type="text/javascript" src="sources/app.js"></script>
<script type="text/javascript" src="modules/module.js"></script>
<!-- App Title -->
<title>KipodAfterFree | Team</title>
<!-- No Script -->
<noscript></noscript>
<!-- Additional -->
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/[email protected]/particles.min.js"></script>
</head>
<body onload="load()" column>
<!-- Content -->
<p large left onclick="UI.view('home')">Hi, we are KipodAfterFree.</p>
<div id="contents" column>
<div id="home" column>
<p small left>You've found us. Here are your flags:</p>
<a button small left href="https://ctftime.org/ctf/398">CTFs</a>
<div row>
<button small left onclick="UI.view('members')">Members</button>
<button small right onclick="UI.view('contact')">Contact</button>
</div>
</div>
<div id="members" hidden column>
<p small left>Consisting of 7 eager enthusiasts, each with his own speciality.</p>
<div row>
<a button small left href="https://nir.app">Nir</a>
<a button small right href="https://yuval.app">Yuval</a>
</div>
<div row>
<a button small left href="https://nadav.app">Nadav</a>
<a button small center href="https://github.com/guysudai1">Guy</a>
<a button small right href="https://whoru.tech">Amit</a>
</div>
<div row>
<a button small left href="https://twitter.com/ManorHadar">Hadar</a>
<a button small right href="https://github.com/omerk2511">Omer</a>
</div>
</div>
<div id="contact" hidden column>
<p medium left>Got you hooked?</p>
<div row>
<a button small left href="https://ctftime.org/team/89050">CTFTime</a>
<a button small right href="mailto:[email protected]">Email</a>
</div>
<div row>
<a button small left href="https://github.com/KipodAfterFree">GitHub</a>
<a button small center href="https://discord.gg/YnJhXmP">Discord</a>
<a button small right href="https://twitter.com/KipodAfterFree">Twitter</a>
</div>
</div>
</div>
<!-- Particles -->
<div id="particles"></div>
</body>
</html>