-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.html
21 lines (21 loc) · 965 Bytes
/
menu.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
<title>Domain Watermarker Menu</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="menu.css">
</head>
<body>
<div id="watermark-text-field" title="Text to be overlaid on top of websites hosted on one of the list of domains below.">
<label for="watermark-text-field-input">Watermark text:</label>
<input id="watermark-text-field-input" type="search">
</div>
<form id="add-domain-form" title="Domain to be added to the list to be watermarked, usually in the form: 'subdomain.company.tld'.">
<input id="domain-to-add-field" type="search" placeholder="Domain…">
<button>Add</button>
</form>
<ul id="domain-list"></ul>
<script type="text/javascript" src="defaults.js"></script>
<script type="text/javascript" src="menu.js"></script>
</body>
</html>