-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·41 lines (36 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags-->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Midnight Flag CTF event.">
<meta name="author" content="Worty">
<meta name="keywords" content="ESNA Midnight Flag CTF">
<!-- Title Page-->
<title>Midnight Flag</title>
<!-- Vendor CSS-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="./assets/js/main.js"></script>
<script src="./assets/js/polyfill.js"></script>
<link href="./assets/css/terminal.css" rel="stylesheet" type="text/css" />
<!-- Main CSS-->
</head>
<body>
<div id="sidenav" style="display: none;">
<button id="sidenavBtn">☰</button>
<img id="profilePic" alt="An avatar that aims to represent the website owner" src="./img/avatar.png">
</div>
<div id="container">
<div id="output"></div>
<div id="input-line" class="input-line">
<div id="prompt" class="prompt-color"></div>
<div>
<input type="text" id="cmdline" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"
autofocus/>
</div>
</div>
</div>
</body><!-- This templates was made by Colorlib (https://colorlib.com) -->
</html>
<!-- end document-->