-
Notifications
You must be signed in to change notification settings - Fork 39
/
splash.html
73 lines (68 loc) · 2.08 KB
/
splash.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
<!DOCTYPE html>
<html>
<head>
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Welcome to SniffLab!</title>
<style>
body {
font-family: Helvetica, Arial, sans-serif;
line-height: 1.5;
max-width: 500px;
margin:0 auto;
padding: 10px
}
h1:first-child {
margin-top: 0;
}
#login {
margin:0;
padding:0;
}
#joinBtn {
width:100%;
line-height:1.5;
border:0;
margin:0;
}
.btn {
display:block;
cursor: pointer;
text-align:center;
background: #ffde05;
background-image: -webkit-linear-gradient(top, #ffde05, #ebae15);
background-image: -moz-linear-gradient(top, #ffde05, #ebae15);
background-image: -ms-linear-gradient(top, #ffde05, #ebae15);
background-image: -o-linear-gradient(top, #ffde05, #ebae15);
background-image: linear-gradient(to bottom, #ffde05, #ebae15);
-webkit-border-radius: 28;
-moz-border-radius: 28;
border-radius: 28px;
font-family: Arial;
color: #000000;
font-size: 20px;
padding: 10px 20px 10px 20px;
text-decoration: none;
}
.btn:hover {
background: #ffbf00;
background-image: -webkit-linear-gradient(top, #ffbf00, #ff9900);
background-image: -moz-linear-gradient(top, #ffbf00, #ff9900);
background-image: -ms-linear-gradient(top, #ffbf00, #ff9900);
background-image: -o-linear-gradient(top, #ffbf00, #ff9900);
background-image: linear-gradient(to bottom, #ffbf00, #ff9900);
text-decoration: none;
}
</style>
</head>
<body>
<h1>Welcome to SniffLab!</h1>
<p>This network records all traffic going in and out of it, and man-in-the-middles HTTPS traffic.</p>
<p><strong>Use SniffLab for testing only. Remember to switch networks when you are done.</strong>
<form method="post" id="login" action="http://192.168.1.1:5280/">
<input type="hidden" name="accept_terms" value="yes">
<input type="hidden" name="mode_login">
<input class="btn" id="joinBtn" type="submit" value="Join SniffLab">
</form>
</body>
</html>