forked from mitzkia/syslog-ng-ose-configurator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.html
39 lines (38 loc) · 1.17 KB
/
template.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
<!--
* syslog-ng OSE configurator
*
* Copyright 2012, Andras Mitzki
* License: GNU GENERAL PUBLIC LICENSE v3
*
* Date: Wed Dec 19 10:03:56 CET 2012
-->
<html>
<body>
<br />
<h1>Template configuration</h1>
<br />
<table class="bordered">
<thead>
<tr>
<th>Sources</th>
<th>Destinations</th>
<th>Generate</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<p>File source: </p><br />
<p>File name: </p><input name="file_name" id="template_file_source1" type="text" ng-model="template_file_source.value" required="required" />
</td>
<td>
<p>TCP destination: </p><br />
<p>IP address: </p><input name="ip" id="template_tcp_ip1" type="text" ng-model="template_tcp_ip.value" required="required" /><br />
<p>PORT: </p><input name="port" id="template_tcp_port1" type="number" ng-model="template_tcp_port.value" required="required" />
</td>
<td><a href="" class="button" ng-click="add_template1()">Generate</a></td>
</tr>
</tbody>
</table>
</body>
</html>