<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>