blob: 3a8a15074f8e19c0c4ecbb12c074910525e81cc3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<& /elements/header-popup.html, 'Add Router' &>
<FORM NAME="nms-add_iface" ACTION="<% popurl(1) %>process/nms-add_router.html" METHOD=POST>
Router Hostname/IP
<% include('/elements/input-text.html',
'field' => 'host',
)
%>
<BR>
SNMP Community String (optional)
<% include('/elements/input-text.html',
'field' => 'community',
)
%>
<BR>
<BR>
<INPUT TYPE="submit" NAME="submitButton" ID="submit_nms-add_router" VALUE="Add Router">
</FORM>
</BODY></HTML>
<%init>
# XXX: access rights, disable/enable submit button, something's wrong with style
</%init>
|