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, 32 insertions, 0 deletions
diff --git a/admportal/views/partials/vm_profile.ejs b/admportal/views/partials/vm_profile.ejs
new file mode 100644
index 00000000..5c437e9e
--- /dev/null
+++ b/admportal/views/partials/vm_profile.ejs
@@ -0,0 +1,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>