-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoptions.html
64 lines (55 loc) · 2.55 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<title>Options for ISE Assistant</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<style>
.container {
min-width: 300px;
max-width: 300px;
margin: 10px auto;
}
</style>
</head>
<body>
<nav class="navbar navbar-light bg-light">
<span class="navbar-brand mb-0 h1">ISE Assistant Settings</span>
</nav>
<form id="form">
<div class="container">
<div class="form-group">
<label for="isePanField">ISE Active PAN Node</label>
<input class="form-control" id="isePanField" aria-describedby="serverHelp" placeholder="Enter Server Address">
<small id="serverHelp" class="form-text text-muted">This should be an FQDN or IP address.</small>
</div>
<div class="form-group">
<label for="iseMntField">ISE MNT Node</label>
<input class="form-control" id="iseMntField" aria-describedby="serverHelp" placeholder="Enter Server Address">
<small id="serverHelp" class="form-text text-muted">This should be an FQDN or IP address.</small>
</div>
<div class="form-group">
<label for="portField">ISE ERS Port</label>
<input class="form-control" id="portField" aria-describedby="portHelp" placeholder="Enter ERS Port Number">
<small id="portHelp" class="form-text text-muted">Default port for ISE ERS is 9060.</small>
</div>
<div class="form-group">
<label for="userField">ISE User</label>
<input class="form-control" id="userField" aria-describedby="userHelp" placeholder="Enter ISE Username">
<small id="userHelp" class="form-text text-muted">Ensure this user has permissions to ISE ERS, and ISE ERS service is enabled in ISE Settings.</small>
</div>
<div class="form-group">
<label for="passField">ISE Password</label>
<input class="form-control" type="password" id="passField" aria-describedby="passHelp" placeholder="Enter ISE Password">
</div>
<div class="form-group text-center">
<button type="submit" value="Submit" id="optionsSubmit" class="btn btn-primary">Save</button>
<button value="Refresh" id="refreshGroups" class="btn btn-primary">Refresh Groups</button>
<p>
<small><a href="./intro.html" target="_blank">Help</a> / <a href="./update.html" target="_blank">Update Notes</a></small>
</p>
</div>
</div>
</form>
<script type="text/javascript" src="options.js"></script>
</body>
</html>