aboutsummaryrefslogtreecommitdiffstats
path: root/admportal/views/partials/v4_firewall_packet_filters.ejs
diff options
context:
space:
mode:
Diffstat (limited to 'admportal/views/partials/v4_firewall_packet_filters.ejs')
-rw-r--r--admportal/views/partials/v4_firewall_packet_filters.ejs46
1 files changed, 46 insertions, 0 deletions
diff --git a/admportal/views/partials/v4_firewall_packet_filters.ejs b/admportal/views/partials/v4_firewall_packet_filters.ejs
new file mode 100644
index 00000000..0b091d15
--- /dev/null
+++ b/admportal/views/partials/v4_firewall_packet_filters.ejs
@@ -0,0 +1,46 @@
+ <div class="modal fade" id="v4-firewall-packet-filters-modal" tabindex="-1" role="dialog"
+ aria-labelledby="v4-firewall-packet-filters-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">v4-firewall-packet-filters</h4>
+ </div>
+ <div class="modal-body">
+ <form role="form" action="" method="POST">
+ <div class="form-group">
+ <label for="v4_firewall_prefix">v4-firewall-prefix</label>
+ <input type="text" class="form-control" name="v4_firewall_prefix" id="v4_firewall_prefix">
+ </div>
+ <div class="form-group">
+ <label for="v4_firewall_prefix_length">v4-firewall-prefix-length</label>
+ <input type="text" class="form-control" name="v4_firewall_prefix_length" id="v4_firewall_prefix_length">
+ </div>
+ <div class="form-group">
+ <label for="v4_allow_icmp_ping">allow-icmp-ping</label>
+ <input type="text" class="form-control" name="v4_allow_icmp_ping" id="v4_allow_icmp_ping">
+ </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){
+ $('#v4-firewall-packet-filters-modal').modal('hide');
+ form.action = form.uf_action.value;
+ form.submit();
+ return;
+}
+</script>
+