-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (63 loc) · 1.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>TOP SECRET</title>
<link href="https://fonts.googleapis.com/css?family=VT323" rel="stylesheet">
</head>
<body>
<marquee scrolldelay="10" scrollamount="25" id="warning">WARNING TOP SECRET IF YOU NAVIGATED TO THIS PAGE ACCIDENTALLY DESTROY YOUR DEVICE IMMEDIATELY</marquee>
<div id="flex-fucker">
<input id="username" placeholder="username">
<input id="password" placeholder="password">
<div id="submit" onclick="submit()">submit</div>
</div>
<style>
:root {
--green: green;
}
* {
background: black;
font-family: VT323;
}
body, input {
font-size: 10rem;
}
input {
border: 3px solid var(--green);
background: black;
width: 900px;
height: 100px;
color: white;
padding: 20px;
margin: 10px 0;
}
#warning {
color: var(--green);
font-size: 15rem;
margin-top: 10rem;
margin-bottom: 4rem;
}
#flex-fucker {
display: flex;
flex-direction: column;
align-items: center;
}
#submit {
background-color:green;
}
</style>
<script>
let i = true
setInterval(() => {
document.querySelector('#warning').style.color = i ? 'red' : 'green'
i = !i
}, 100)
function submit() {
if ((document.getElementById('username').value === "hackerman") && (document.getElementById('password').value === "arraysstart@1")) {
window.location.href = 'done.html'
}
}
</script>
</body>
</html>