aboutsummaryrefslogtreecommitdiffstats
path: root/admportal/views/partials/v4_dhcp_pools.ejs
diff options
context:
space:
mode:
Diffstat (limited to 'admportal/views/partials/v4_dhcp_pools.ejs')
-rw-r--r--admportal/views/partials/v4_dhcp_pools.ejs50
1 files changed, 0 insertions, 50 deletions
diff --git a/admportal/views/partials/v4_dhcp_pools.ejs b/admportal/views/partials/v4_dhcp_pools.ejs
deleted file mode 100644
index 5a67aeb1..00000000
--- a/admportal/views/partials/v4_dhcp_pools.ejs
+++ /dev/null
@@ -1,50 +0,0 @@
- <div class="modal fade" id="v4-dhcp-pools-modal" tabindex="-1" role="dialog"
- aria-labelledby="v4-dhcp-pools-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">dhcp</h4>
- </div>
- <div class="modal-body">
- <form role="form" action="" method="POST">
- <div class="form-group">
- <label for="v4_dhcp_relay_next_hop_address">v4-dhcp-relay-next-hop-address</label>
- <input type="text" class="form-control" name="v4_dhcp_relay_next_hop_address" id="v4_dhcp_relay_next_hop_address">
- </div>
- <div class="form-group">
- <label for="v4_dhcp_pool_prefix">v4-dhcp-pool-prefix</label>
- <input type="text" class="form-control" name="v4_dhcp_pool_prefix" id="v4_dhcp_pool_prefix">
- </div>
- <div class="form-group">
- <label for="v4_dhcp_pool_prefix_length">v4-dhcp-pool-prefix-length</label>
- <input type="text" class="form-control" name="v4_dhcp_pool_prefix_length" id="v4_dhcp_pool_prefix_length">
- </div>
- <div class="form-group">
- <label for="v4_dhcp_relay_gateway_address">v4-dhcp-relay-gateway-address</label>
- <input type="text" class="form-control" name="v4_dhcp_relay_gateway_address" id="v4_dhcp_relay_gateway_address">
- </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-dhcp-pools-modal').modal('hide');
- form.action = form.uf_action.value;
- form.submit();
- return;
-}
-</script>
-