-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
30 lines (30 loc) · 1.12 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
<html>
<head>
<link type="text/css" href="popup/foundation.min.css" rel="stylesheet">
<script type="text/javascript" src="popup/jquery.js"></script>
<script type="text/javascript" src="popup/jquery.foundation.mediaQueryToggle.js"></script>
<script type="text/javascript" src="popup/jquery.foundation.buttons.js"></script>
<script type="text/javascript" src="popup/jquery.foundation.forms.js"></script>
<script type="text/javascript" src="popup/modernizr.foundation.js"></script>
<script type="text/javascript" src="popup/popup.js"></script>
<style>
body {
min-width: 300px;
padding: 0 10px;
}
</style>
</head>
<body>
<h5>Report a website</h5>
<p>Please report any websites you encounter with a cookie notification which isn't handled by the extension using the form below.</p>
<form>
<div id="domain-row" class="row">
<label for="domain-input">Domain</label>
<input type="text" name="domain" id="domain-input" placeholder="example.com">
</div>
<div class="row">
<button id="send-email" class="button">Send Email</button>
</div>
</form>
</body>
</html>