-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoptions.html
29 lines (25 loc) · 1.12 KB
/
options.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
<!DOCTYPE html>
<html>
<head>
<title>Droplet Autofill Options</title>
<script type="text/javascript" src="lib/jquery-1.10.2.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
</head>
<body>
<div class="container">
<div> </div>
<div class="alert alert-info">
<p class="lead">Droplet Autofill</p> by <a href="http://www.prateekjadhwani.com/">Prateek Jadhwani</a>
</div>
<div class="well">
<div id="note">
<p>You already have JSON data associated with your extension. If you need to update the file, the paste the contents in the textfield below and click on update button.</p>
</div>
<textarea id="jsonText" rows="10" class="input-block-level"></textarea>
<button id="updateButton" class="btn btn-large btn-block" type="button">Update JSON Data</button>
</div>
</div>
</body>
<script src="options.js"></script>
</html>