blob: 4cc24a2de09fea9886c2fe12b2bb439cfee10831 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
<div class="modal fade" id="add_vlan_range" tabindex="-1" role="dialog"
aria-labelledby="add_vlan_range_label" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title">Add NetBond VLAN Range</h4>
</div>
<div class="modal-body">
<form name="addForm" role="form" action="/gamma/saveNbVlanRange" method="POST">
<div class="form-group">
<label for="nf_plan_type">*Plan Type</label>
<select class="form-control" name="nf_plan_type" id="nf_plan_type">
<option value="NB VNAT">NB VNAT</option>
</select>
</div>
<div class="form-group">
<label for="nf_purpose">*Purpose</label>
<select class="form-control" name="nf_purpose" id="nf_purpose">
<option value=CUSTOMER>CUSTOMER</option>
<option value=PARTNER>PARTNER</option>
</select>
</div>
<div class="form-group">
<label for="nf_range_start">*Range Start</label>
<input type="text" class="form-control" name="nf_range_start" id="nf_range_start" maxlength="4" placeholder="int(4)">
</div>
<div class="form-group">
<label for="nf_range_end">*Range End</label>
<input type="text" class="form-control" name="nf_range_end" id="nf_range_end" maxlength="4" placeholder="int(4)">
</div>
<div class="form-group">
<input type="hidden" name="nf_action" id="nf_action">
<button type="button" class="btn btn-primary" onclick="saveNbVlanRange(this.form);">Save</button>
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
</div>
</form>
</div>
</div>
</div>
</div>
|