-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
93 lines (93 loc) · 2.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<style>
body {
background-color: #0f0f0f;
color: #00ff00;
font-family: 'Courier New', Courier, monospace;
text-align: center;
padding: 50px;
}
h1 {
font-size: 3em;
}
form {
margin-top: 20px;
}
label {
font-size: 1.5em;
}
input[type="text"] {
width: 300px;
padding: 10px;
font-size: 1.2em;
margin-top: 10px;
}
button {
background-color: #00ff00;
color: #0f0f0f;
border: none;
padding: 10px 20px;
font-size: 1.2em;
cursor: pointer;
margin-top: 10px;
}
button:hover {
background-color: #0f0f0f;
color: #00ff00;
border: 2px solid #00ff00;
}
a {
color: #00ff00;
text-decoration: none;
font-size: 1.2em;
}
a:hover {
text-decoration: underline;
}
.terminal {
background-color: #0d0d0d;
border: 2px solid #00ff00;
padding: 20px;
margin-top: 30px;
text-align: left;
}
.terminal p {
margin: 0;
font-size: 1.1em;
}
.blink {
animation: blink 1s steps(2, start) infinite;
-webkit-animation: blink 1s steps(2, start) infinite;
}
@keyframes blink {
to {
visibility: hidden;
}
}
@-webkit-keyframes blink {
to {
visibility: hidden;
}
}
</style>
</head>
<body>
<h1>Welcome to the Guardian Scanner</h1>
<form action="/scan" method="post">
<label for="url">URL:</label>
<input type="text" id="url" name="url" required>
<button type="submit">Scan</button>
</form>
<br>
<a href="/scans">View Scan Results</a>
<div class="terminal">
<p>$ <span class="blink">|</span></p>
<p>Scanning for vulnerabilities...</p>
</div>
</body>
</html>