Initial commit for OpenECOMP SDN-C OA&M
[sdnc/oam.git] / admportal / views / partials / nb_vlan_range.ejs
1    <div class="modal fade" id="add_vlan_range" tabindex="-1" role="dialog" 
2                 aria-labelledby="add_vlan_range_label" aria-hidden="true">
3       <div class="modal-dialog">
4         <div class="modal-content">
5           <div class="modal-header">
6             <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
7             <h4 class="modal-title">Add NetBond VLAN Range</h4>
8           </div>
9           <div class="modal-body">
10           <form name="addForm" role="form" action="/gamma/saveNbVlanRange" method="POST">
11
12                          <div class="form-group">
13              <label for="nf_plan_type">*Plan Type</label>
14                 <select class="form-control" name="nf_plan_type" id="nf_plan_type">
15                     <option value="NB VNAT">NB VNAT</option>
16                 </select>
17               </div>
18
19                           <div class="form-group">
20               <label for="nf_purpose">*Purpose</label>
21                 <select class="form-control" name="nf_purpose" id="nf_purpose">
22                     <option value=CUSTOMER>CUSTOMER</option>
23                     <option value=PARTNER>PARTNER</option>
24                 </select>
25               </div>
26
27               <div class="form-group">
28                 <label for="nf_range_start">*Range Start</label>
29                 <input type="text" class="form-control" name="nf_range_start" id="nf_range_start" maxlength="4" placeholder="int(4)">
30               </div>
31
32               <div class="form-group">
33                 <label for="nf_range_end">*Range End</label>
34                 <input type="text" class="form-control" name="nf_range_end" id="nf_range_end" maxlength="4" placeholder="int(4)">
35               </div>
36               <div class="form-group">
37                                 <input type="hidden" name="nf_action" id="nf_action">
38                                 <button type="button" class="btn btn-primary" onclick="saveNbVlanRange(this.form);">Save</button>
39                                 <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
40               </div>
41            </form>
42           </div>
43       </div>
44     </div>
45   </div>