diff options
author | Timoney, Daniel (dt5972) <dtimoney@att.com> | 2017-02-15 10:37:53 -0500 |
---|---|---|
committer | Timoney, Daniel (dt5972) <dtimoney@att.com> | 2017-02-15 10:40:37 -0500 |
commit | 324ee36fe31763e507b422ab0a88e4230045e205 (patch) | |
tree | d0b04520f6657601c918ce63fd27575977624187 /admportal/views/partials/dhcp.ejs | |
parent | f0c97e8db427481e28c0a16b789bc73801b35e47 (diff) |
Initial commit for OpenECOMP SDN-C OA&M
Change-Id: I7ab579fd0d206bf356f36d52dcdf4f71f1fa2680
Signed-off-by: Timoney, Daniel (dt5972) <dtimoney@att.com>
Former-commit-id: 2a9f0edd09581f907e62ec4689b5ac94dd5382ba
Diffstat (limited to 'admportal/views/partials/dhcp.ejs')
-rw-r--r-- | admportal/views/partials/dhcp.ejs | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/admportal/views/partials/dhcp.ejs b/admportal/views/partials/dhcp.ejs new file mode 100644 index 00000000..a290c324 --- /dev/null +++ b/admportal/views/partials/dhcp.ejs @@ -0,0 +1,66 @@ + <div class="modal fade" id="dhcp-modal" tabindex="-1" role="dialog" + aria-labelledby="dhcp-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">×</button> + <h4 class="modal-title">dhcp</h4> + </div> + <div class="modal-body"> + <form id="dhcp_form" role="form" action="" method="POST"> + <div class="form-group"> + <label for="use_v4_default_pool">use-v4-default-pool</label> + <input type="text" class="form-control" name="use_v4_default_pool" id="use_v4_default_pool"> + </div> + <div class="form-group"> + <label for="use_v6_default_pool">use-v6-default-pool</label> + <input type="text" class="form-control" name="use_v6_default_pool" id="use_v6_default_pool"> + </div> + <div class="form-group"> + <label for="v4_dhcp_server_enabled">v4-dhcp-server-enabled</label> + <input type="text" class="form-control" name="v4_dhcp_server_enabled" id="v4_dhcp_server_enabled"> + </div> + <div class="form-group"> + <label for="v6_dhcp_server_enabled">v6-dhcp-server-enabled</label> + <input type="text" class="form-control" name="v6_dhcp_server_enabled" id="v6_dhcp_server_enabled"> + </div> + <div class="form-group"> + <label for="v6_dhcp_default_pool_prefix">v6-dhcp-default-pool-prefix</label> + <input type="text" class="form-control" name="v6_dhcp_default_pool_prefix" id="v6_dhcp_default_pool_prefix"> + </div> + <div class="form-group"> + <label for="v6_dhcp_default_pool_prefix_length">v6-dhcp-default-pool-prefix-length</label> + <input type="text" class="form-control" name="v6_dhcp_default_pool_prefix_length" id="v6_dhcp_default_pool_prefix_length"> + </div> + <div class="form-group"> + <label for="v4_dhcp_default_pool_prefix">v4-dhcp-default-pool-prefix</label> + <input type="text" class="form-control" name="v4_dhcp_default_pool_prefix" id="v4_dhcp_default_pool_prefix"> + </div> + <div class="form-group"> + <label for="v4_dhcp_default_pool_prefix_length">v4-dhcp-default-pool-prefix-length</label> + <input type="text" class="form-control" name="v4_dhcp_default_pool_prefix_length" id="v4_dhcp_default_pool_prefix_length"> + </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){ + $('#dhcp-modal').modal('hide'); + form.action = form.uf_action.value; + form.submit(); + return; +} +</script> + |