forked from sanitz/hudson-chrome-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
25 lines (24 loc) · 992 Bytes
/
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
<html>
<head>
<title>Hudson Extension - Options</title>
<link rel="stylesheet" type="text/css" href="options.css" />
<script src="conf.js"></script>
<script src="options.js"></script>
</head>
<body>
<div id="header"><h1>Hudson Extension</h1></div>
<div class="section-header first">Options</div>
<p><label for="hudson-url">Enter the URL of your Hudson here</label>:</p>
<input type="text" id="hudson-url">
<p><label for="poll-intervall">Enter poll intervall in in minutes</label>:</p>
<input type="text" id="poll-intervall">
<p><label for="desktop-notifications">Enable Desktop Notifications</label>
<input type="checkbox" id="desktop-notifications">
</p>
<div class="footer">
<button id="save-button" style="font-weight:bold" >Save</button>
<button id="cancel-button">Cancel</button>
<span id="save-status" style="display:none">Options saved.</span>
</div>
</body>
</html>