aboutsummaryrefslogtreecommitdiffstats
path: root/admportal/views/partials/vm_profile.ejs
diff options
context:
space:
mode:
Diffstat (limited to 'admportal/views/partials/vm_profile.ejs')
-rw-r--r--admportal/views/partials/vm_profile.ejs32
1 files changed, 0 insertions, 32 deletions
diff --git a/admportal/views/partials/vm_profile.ejs b/admportal/views/partials/vm_profile.ejs
deleted file mode 100644
index 5c437e9e..00000000
--- a/admportal/views/partials/vm_profile.ejs
+++ /dev/null
@@ -1,32 +0,0 @@
- <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>