-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (45 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Shekar</title>
<script src="./dist/bundle.js"></script>
<script src="https://unpkg.com/vue@2.1.6/dist/vue.js"></script>
<link rel="stylesheet" type="text/css" href="./styles.css" />
</head>
<body>
<h1><a href="https://shekar.thegoat.ir">Shekar</a></h1>
<div id="app">
<h3>See if you've been compromised...</h3>
<span>@</span>
<input
id="username"
type="text"
placeholder="Username"
v-model="username"
autocomplete="off"
/>
<a id="go" ref="submitButton" :href="`./?username=${username}`"
><button>Go!</button></a
>
</div>
<footer>
<p>
© The Goat |
<a href="https://github.com/thegoat-ir/shekar" target="_blank"
>GitHub</a
>
</p>
</footer>
<script>
new Vue({
el: "#app",
data: {
username: "",
},
});
</script>
</body>
</html>