-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
49 lines (49 loc) · 1.11 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
<html>
<head>
<title>Welcome to HCTF</title>
<style type="text/css">
@font-face {
font-family: "Proxima Nova";
src: url("fonts/ProximaNova.woff2");
}
@font-face {
font-family: "Proxima Nova";
src: url("fonts/ProximaNovaBold.woff2");
font-weight: bold;
}
* {
font-family: "Proxima Nova", sans-serif;
}
body {
background-color: #F0F0F0;
}
#panel {
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
text-align: center;
font-size: 1.25em;
}
#panel #message {
margin: 10px;
padding: 20px;
background-color: #FFF;
border-radius: 5px;
font-size: 1em;
border: 1px solid #000;
text-align: center;
}
</style>
<script src="=_=.js"></script>
</head>
<body>
<div id="panel">
<h2>H4v3 a g0od t1m3!:></h2>
<img src="leimu.jpg" style="height:65%; max-height:300px;" />
<form onsubmit="javascript:test();return false;" action="javascript:test();">
<input type="text" id="message" autocomplete="off" autofocus placeholder="hctf{xxxxxx}" />
</form>
</div>
</body>
</html>