aboutsummaryrefslogtreecommitdiffstats
path: root/admportal/views/partials/excluded_v4_address_from_default_pool.ejs
diff options
context:
space:
mode:
Diffstat (limited to 'admportal/views/partials/excluded_v4_address_from_default_pool.ejs')
-rw-r--r--admportal/views/partials/excluded_v4_address_from_default_pool.ejs38
1 files changed, 38 insertions, 0 deletions
diff --git a/admportal/views/partials/excluded_v4_address_from_default_pool.ejs b/admportal/views/partials/excluded_v4_address_from_default_pool.ejs
new file mode 100644
index 00000000..442fd344
--- /dev/null
+++ b/admportal/views/partials/excluded_v4_address_from_default_pool.ejs
@@ -0,0 +1,38 @@
+ <div class="modal fade" id="excluded-v4-address-from-default-pool-modal" tabindex="-1" role="dialog"
+ aria-labelledby="excluded-v4-address-from-default-pool-modal-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">&times;</button>
+ <h4 class="modal-title">excluded-v4-addresses-from-default-pool</h4>
+ </div>
+ <div class="modal-body">
+ <form role="form" action="" method="POST">
+ <div class="form-group">
+ <label for="excluded_v4_address_from_default_pool">excluded-v4-address</label>
+ <input type="text" class="form-control" name="excluded_v4_address_from_default_pool" id="excluded_v4_address_from_default_pool">
+ </div>
+
+<!--
+ <div class="form-group">
+ <input type="hidden" name="svc_instance_id" id="svc_instance_id">
+ <input type="hidden" name="uf_action" id="uf_action">
+ <button type="button" class="btn btn-primary" onclick="submit(this.form);">Submit</button>
+ <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
+ </div>
+-->
+ </form>
+ </div>
+ </div>
+ </div>
+ </div>
+
+<script type="text/javascript">
+function submit(form){
+ $('#excluded-v4-address-from-default-pool-modal').modal('hide');
+ form.action = form.uf_action.value;
+ form.submit();
+ return;
+}
+</script>
+