blob: c32ceb84c004cb052d0e35851fb556321427a24e (
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="submit" 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>
|