-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
74 lines (52 loc) · 1.76 KB
/
popup.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
<!DOCTYPE html>
<html>
<head>
<title>Don't Phish Me 🙅🏾</title>
<script src="js/sweetalert.min.js"></script>
<script src="js/jquery.min.js"></script>
<script src="js/popup.js"></script>
<script src="js/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css" href="skin/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="skin/main.css">
<link rel="stylesheet" type="text/css" href="skin/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="skin/bootstrap-glyphicons.css">
</head>
<body>
<div class="container header-container">
<div id="header">
<div class="row">
<div class="col-xs-6">
<h1 id="popup-title">Don't Phish Me</h1>
</div>
<div class="col-xs-6">
<img src="./media/woman-gesturing-not-ok.png" alt="woman gesturing not ok" id="woman-gesturing-not-ok">
</div>
</div>
</div>
<br>
</div>
</div>
<div class="container" id="add-user-names-addresses">
<div id="usernameform">
<div class="form-group">
<input type="text" class="form-control" id="username" placeholder="Enter Username or email address to protect against login details phising">
</div>
</div>
<button class="btn btn-default" id="protect-username">Protect Username</button>
<br>
<br>
<div id="urlform">
<div class="form-group">
<input type="text" class="form-control" id="url" placeholder="Enter trusted url">
<span class='alert alert-danger'>If this is not your current URL please refresh your page</span>
</div>
</div>
<p>Usernames you use on this url:</p>
<div id="username-checkbox-list">
</div>
<button class="btn btn-warning" id="trust-url">Add to trusted list</button>
</div>
<div class="container" id="view-trusted-urls">
</div>
</body>
</html>