aboutsummaryrefslogtreecommitdiffstats
path: root/admportal/views/partials/vm_profile.ejs
blob: 5c437e9e5dc49d26adceef7a81e7ecd296ad086b (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
   <div class="modal fade" id="add_vm_profile" tabindex="-1" role="dialog" 
		aria-labelledby="add_vm_profile" 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">&times;</button>
            <h4 class="modal-title">Add VM Profile</h4>
          </div>
          <div class="modal-body">
            <form name="addForm" role="form" action="/mobility/addVmProfile" method="POST">
              <div class="form-group">
                <label for="nf_vnf_type">*VNF Type</label>
                <input type="text" class="form-control" name="nf_vnf_type" id="nf_vnf_type" maxlength="200" placeholder="varchar(200)">
              </div>
              <div class="form-group">
                <label for="nf_vm_type">*VM Type</label>
                <input type="text" class="form-control" name="nf_vm_type" id="nf_vm_type" maxlength="45" placeholder="varchar(45)">
              </div>
              <div class="form-group">
                <label for="nf_vm_count">VM Count</label>
                <input type="text" class="form-control" name="nf_vm_count" id="nf_vm_count" maxlength="11" placeholder="int(11)">
              </div>
              <div class="form-group">
				<input type="hidden" name="nf_action" id="nf_action">
				<button type="button" class="btn btn-primary" onclick="addVmProfile(this.form);">Submit</button>
				<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
              </div>
           </form>
          </div>
      </div>
    </div>
  </div>