-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathindex.html
94 lines (91 loc) · 3.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="public/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="https://unpkg.com/wingcss" />
<link rel="stylesheet" href="public/styles.css" />
<title>WiFiFox</title>
</head>
<body>
<div class="nav horizontal-align">
<div class="nav-item">
<a href="#download">Download</a>
</div>
<div class="nav-item">
<a href="https://github.com">Source Code</a>
</div>
</div>
<div class="hero container center text-center">
<div>
<img src="public/logo.png" alt="WiFiFox Logo" height="125" />
<h3>WiFiFox</h3>
<h5>A menubar app for bypassing WiFi login pages.</h5>
</div>
</div>
<div id="download" class="container center">
<div>
<h3 class="header">DOWNLOAD</h3>
<div class="row">
<div class="col-12 text-center">
<p style="font-size: 18px;">Please consider <a href="https://github.com/sponsors/t-mullen">sponsoring this
project.</a></p>
<p class=" code">npm install -g wififox</p>
<br>
<p class="code">sudo wififox</p>
</div>
</div>
</div>
</div>
<div class="container center">
<div>
<h3 class="header">FEATURES</h3>
<div class="row">
<div class="col-3">
<h5 class="text-center">Connect Without Login</h5>
<p class="content">Works in thousands of open networks - the kind at coffee shops, airports, and
malls.</p>
</div>
<div class="col-3">
<h5 class="text-center">Protect Your Privacy</h5>
<p class="content">Don't give away your email and personal details just for internet access.</p>
</div>
<div class="col-3">
<h5 class="text-center">Skip The Wait</h5>
<p class="content">Dodge annoying wait times, intrusive ads and long registration/signup forms.</p>
</div>
</div>
</div>
</div>
<div class="container center">
<div>
<h3 class="header">HOW IT WORKS</h3>
<div class="row">
<div class="col-6 text-center">
<img width=200 src="public/explain1.png" />
<p class="content">WiFiFox scans the network to see who is already connected and registered.</p>
</div>
<div class="col-6 text-center">
<img width=200 src="public/explain2.png" />
<p class="content">It then borrows another "MAC address" -<br>safely bypassing any login pages.</p>
</div>
</div>
<div class="row">
<div class="col-12">
<p class="content text-center">Curious for details? <a href="https://github.com/t-mullen/wififox">The code is
100%
open-source.</a></p>
</div>
</div>
</div>
</div>
<footer>
<span>© 2020 Thomas Mullen</span>
</footer>
</body>
<script src="https://cdn.paddle.com/paddle/paddle.js"></script>
<script type="text/javascript">
Paddle.Setup({ vendor: 116357 });
</script>
</html>