-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoptionsByURL.html
More file actions
40 lines (37 loc) · 852 Bytes
/
optionsByURL.html
File metadata and controls
40 lines (37 loc) · 852 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>PhoneDork Options</title>
<script src="js/optionsByURL.js"></script>
<style>
body {
padding: 20px;
margin: 0px;
}
h1 {
margin-top: 0px;
}
label {
display: block;
}
#status {
margin: 20px 0px;
}
</style>
</head>
<body>
<h1>Custom URL Options</h1>
<!--TODO Specify what the custom url should look like-->
<p>Create a custom url to use as a Search feature.</p>
<label for="site_name">Site Name</label>
<input type="textbox" id="site_name" name="site_name" size="40">
<label for="custom_url">Custom URL</label>
<input type="textbox" id="custom_url" name="custom_url" size="40">
<br>
<br>
<button id="save">Save</button>
<div id="status"></div>
<ul id="custom_url_list" style="list-style-type:none">
</ul>
</body>
</html>