-
Notifications
You must be signed in to change notification settings - Fork 0
/
phishing-page.html
63 lines (53 loc) · 1.2 KB
/
phishing-page.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Please Log In</title>
<style>
body {
font-family: sans-serif, Arial, Helvetica, sans-serif;
}
header {
background-color: #4267b2;
padding: 15px;
font-size: 24px;
color: #fff;
}
body {
margin: 0;
font-family: sans-serif, Arial, Helvetica, sans-serif;
}
.login-form {
width: 400px;
margin: 30px auto;
}
.login-title {
padding: 5px 0;
margin-bottom: 10px;
}
input {
width: 317px;
}
input[type=submit] {
width: unset;
padding: 10px 30px;
border: none;
background-color: #4267b2;
color: #fff;
}
</style>
</head>
<body>
<header>Phishbook</header>
<div class="login-form">
<div class="login-title">Your session has expired. Please log in.</div>
<label for="u">Username</label>
<input type="text" id="u"><br><br>
<label for="p">Password</label>
<input type="password" id="p"><br><br>
<input type="submit">
</div>
</body>
</html>