Timoney, Daniel (dt5972) | 324ee36 | 2017-02-15 10:37:53 -0500 | [diff] [blame] | 1 | <div class="modal fade" id="add_vm_profile" tabindex="-1" role="dialog" |
| 2 | aria-labelledby="add_vm_profile" 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">×</button> |
| 7 | <h4 class="modal-title">Add VM Profile</h4> |
| 8 | </div> |
| 9 | <div class="modal-body"> |
| 10 | <form name="addForm" role="form" action="/mobility/addVmProfile" method="POST"> |
| 11 | <div class="form-group"> |
| 12 | <label for="nf_vnf_type">*VNF Type</label> |
| 13 | <input type="text" class="form-control" name="nf_vnf_type" id="nf_vnf_type" maxlength="200" placeholder="varchar(200)"> |
| 14 | </div> |
| 15 | <div class="form-group"> |
| 16 | <label for="nf_vm_type">*VM Type</label> |
| 17 | <input type="text" class="form-control" name="nf_vm_type" id="nf_vm_type" maxlength="45" placeholder="varchar(45)"> |
| 18 | </div> |
| 19 | <div class="form-group"> |
| 20 | <label for="nf_vm_count">VM Count</label> |
| 21 | <input type="text" class="form-control" name="nf_vm_count" id="nf_vm_count" maxlength="11" placeholder="int(11)"> |
| 22 | </div> |
| 23 | <div class="form-group"> |
| 24 | <input type="hidden" name="nf_action" id="nf_action"> |
| 25 | <button type="button" class="btn btn-primary" onclick="addVmProfile(this.form);">Submit</button> |
| 26 | <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button> |
| 27 | </div> |
| 28 | </form> |
| 29 | </div> |
| 30 | </div> |
| 31 | </div> |
| 32 | </div> |