-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharcsight.html
More file actions
49 lines (48 loc) · 1.73 KB
/
Copy patharcsight.html
File metadata and controls
49 lines (48 loc) · 1.73 KB
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
<html>
<head>
<script src="script.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="theForm">
<form>
<label>Name <span class="req">*</span></label>
<input type="text" placeholder="Name" class="isReq">
<br> <br>
<label>Version</label>
<select>
<option value="6.5" selected>6.5</option>
<option value="6.0">6.0</option>
</select>
<br> <br>
<label>Host <span class="req">*</span> </label>
<input type="text" placeholder="Name" class="isReq" id="host">
<br> <br>
<label>Port <span class="req">*</span> </label>
<input type="text" name="port" placeholder="Port" value="8443" class="isReq">
<br> <br>
<label>User <span class="req">*</span> </label>
<input type="text" placeholder="User" class="isReq">
<br> <br>
<label>Password <span class="req">*</span> </label>
<input type="password" placeholder="Password" class="isReq">
<br> <br>
<label>Syslog host </label>
<input type="text" placeholder="Syslog host">
<br> <br>
<label>Syslog port </label>
<input type="text" placeholder="Syslog port" value="514">
<br> <br>
<label>Syslog Facility </label>
<input type="text" placeholder="Syslog Facility" value="local()">
<br> <br>
<label>Filter <span class="help"></span></label>
<textarea></textarea>
<br>
<label class="note"><span class="req">*</span> is required field</label>
<br>
<input type="submit" value="Save" id="save" disabled>
</form>
</div>
</body>
</html>