forked from sanitz/jenkins-chrome-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
40 lines (39 loc) · 1.73 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
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html>
<head>
<title>Jenkins Extension - Options</title>
<link rel="stylesheet" type="text/css" href="../stylesheets/options.css" />
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<script src="../javascripts/conf.js"></script>
<script src="../javascripts/options.js"></script>
</head>
<body>
<div id="header"><h1>Jenkins Extension</h1></div>
<form id="optionForm" name="optionForm">
<div class="section-header first">Options</div>
<div>
<label for="jenkins-url">Enter the URL of your Jenkins here:</label>
<input type="text" id="jenkins-url" />
</div>
<div>
<label for="poll-intervall">Enter poll intervall in in minutes:</label>
<input type="text" id="poll-intervall" />
</div>
<div>
<label for="icon-size">Choose icon size:</label>
<label for="small">S</label><input type="radio" id="small" name="icon-size" value="small" />
<label for="medium">M</label><input type="radio" id="medium" name="icon-size" value="medium" />
<label for="large">L</label><input type="radio" id="large" name="icon-size" value="large" />
</div>
<div>
<label for="successColor">Choose success color:</label>
<label for="blue">Blue</label><input type="radio" id="blue" name="successColor" value="blue" />
<label for="green">Green</label><input type="radio" id="green" name="successColor" value="green" />
</div>
<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>