-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
37 lines (34 loc) · 1.22 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
<!DOCTYPE HTML>
<html>
<head>
<title>Jenkins Notifier</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="bootstrap.min.css">
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<form role="form">
<div class="form-group">
<label for="viewUrl">Jenkins job/view url</label>
<input type="text" class="form-control" id="viewUrl" placeholder="http://localhost/view/Watch" />
</div>
<div class="form-group">
<label for="checkInterval">Check interval (seconds)</label>
<input type="text" class="form-control" id="checkInterval" value="60" placeholder="Interval (seconds)" />
</div>
<div class="form-group">
<label for="notifySuccess">
Notify on SUCCESS
<input type="checkbox" id="notifySuccess" />
</label>
</div>
<button id="save" type="submit" class="btn btn-primary">Submit</button>
<button id="cancel" type="submit" class="btn btn-default">Cancel</button>
</form>
</div> <!-- /container -->
<script type="text/javascript" src="js/data.js"></script>
<script type="text/javascript" src="js/options.js"></script>
</body>
</html>