Timoney, Daniel (dt5972) | 324ee36 | 2017-02-15 10:37:53 -0500 | [diff] [blame] | 1 | <div class="modal fade" id="add_owbc_properties" tabindex="-1" role="dialog" |
| 2 | aria-labelledby="add_owbc_properties_label" aria-hidden="true"> |
| 3 | <div class="modal-dialog"> |
| 4 | <div class="modal-content"> |
| 5 | <div class="modal-header"> |
| 6 | <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> |
| 7 | <h4 class="modal-title">Add OWBC Properties</h4> |
| 8 | </div> |
| 9 | <div class="modal-body"> |
| 10 | <form name="addForm" role="form" action="/tunnel/addOwbcProperties" method="POST"> |
| 11 | <div class="form-group"> |
| 12 | <label for="nf_controller_id">*Controller ID</label> |
| 13 | <input type="text" class="form-control" maxlength="255" name="nf_controller_id" id="nf_controller_id" placeholder="varchar(255)"> |
| 14 | </div> |
| 15 | <div class="form-group"> |
| 16 | <label for="nf_base_uri">*Base URL</label> |
| 17 | <input type="text" class="form-control" maxlength="255" name="nf_base_uri" id="nf_base_uri" placeholder="varchar(255)"> |
| 18 | </div> |
| 19 | <div class="form-group"> |
| 20 | <label for="nf_service_create_extension">*Service Create Extension</label> |
| 21 | <input type="text" class="form-control" maxlength="255" name="nf_service_create_extension" id="nf_service_create_extension" placeholder="varchar(255)"> |
| 22 | </div> |
| 23 | <div class="form-group"> |
| 24 | <label for="nf_service_delete_extension">*Service Delete Extension</label> |
| 25 | <input type="text" class="form-control" maxlength="255" name="nf_service_delete_extension" id="nf_service_delete_extension" placeholder="varchar(255)"> |
| 26 | </div> |
| 27 | <div class="form-group"> |
| 28 | <label for="nf_auth_username">*Auth Username</label> |
| 29 | <input type="text" class="form-control" maxlength="80" name="nf_auth_username" id="nf_auth_username" placeholder="varchar(80)"> |
| 30 | </div> |
| 31 | <div class="form-group"> |
| 32 | <label for="nf_auth_password">*Auth Password</label> |
| 33 | <input type="password" class="form-control" maxlength="80" name="nf_auth_password" id="nf_auth_password" placeholder="varbinary(80)"> |
| 34 | </div> |
| 35 | <div class="form-group"> |
| 36 | <label for="nf_confirm_auth_password">*Confirm Auth Password</label> |
| 37 | <input type="password" class="form-control" maxlength="80" name="nf_confirm_auth_password" id="nf_confirm_auth_password" placeholder="varbinary(80)"> |
| 38 | </div> |
| 39 | <div class="form-group"> |
| 40 | <input type="hidden" name="nf_action" id="nf_action"> |
| 41 | <button type="button" class="btn btn-primary" onclick="submitOwbcProperties(this.form);">Submit</button> |
| 42 | <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button> |
| 43 | </div> |
| 44 | </form> |
| 45 | </div> |
| 46 | </div> |
| 47 | </div> |
| 48 | </div> |
| 49 | |
| 50 | <div class="modal fade" id="update_owbc_properties" tabindex="-1" role="dialog" |
| 51 | aria-labelledby="update_owbc_properties_label" aria-hidden="true"> |
| 52 | <div class="modal-dialog"> |
| 53 | <div class="modal-content"> |
| 54 | <div class="modal-header"> |
| 55 | <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> |
| 56 | <h4 class="modal-title">Update OWBC Properties</h4> |
| 57 | </div> |
| 58 | <div class="modal-body"> |
| 59 | <form role="form" action="/tunnel/updateOwbcProperties" method="POST"> |
| 60 | <div class="form-group"> |
| 61 | <label for="uf_controller_id">*Controller ID</label> |
| 62 | <input type="text" class="form-control" maxlength="255" name="uf_controller_id" id="uf_controller_id" placeholder="varchar(255)"> |
| 63 | </div> |
| 64 | <div class="form-group"> |
| 65 | <label for="uf_base_uri">*Base URL</label> |
| 66 | <input type="text" class="form-control" maxlength="255" name="uf_base_uri" id="uf_base_uri" placeholder="varchar(255)"> |
| 67 | </div> |
| 68 | <div class="form-group"> |
| 69 | <label for="uf_service_create_extension">*Service Create Extension</label> |
| 70 | <input type="text" class="form-control" maxlength="255" name="uf_service_create_extension" id="uf_service_create_extension" placeholder="varchar(255)"> |
| 71 | </div> |
| 72 | <div class="form-group"> |
| 73 | <label for="uf_service_delete_extension">*Service Delete Extension</label> |
| 74 | <input type="text" class="form-control" maxlength="255" name="uf_service_delete_extension" id="uf_service_delete_extension" placeholder="varchar(255)"> |
| 75 | </div> |
| 76 | <div class="form-group"> |
| 77 | <label for="uf_auth_username">*Auth Username</label> |
| 78 | <input type="text" class="form-control" maxlength="80" name="uf_auth_username" id="uf_auth_username" placeholder="varchar(80)"> |
| 79 | </div> |
| 80 | <div class="form-group"> |
| 81 | <label for="uf_auth_password">*Auth Password</label> |
| 82 | <input type="password" class="form-control" maxlength="80" name="uf_auth_password" id="uf_auth_password" placeholder="varbinary(80)"> |
| 83 | </div> |
| 84 | <div class="form-group"> |
| 85 | <label for="uf_confirm_auth_password">*Confirm Auth Password</label> |
| 86 | <input type="password" class="form-control" maxlength="80" name="uf_confirm_auth_password" id="uf_confirm_auth_password" placeholder="varbinary(80)"> |
| 87 | </div> |
| 88 | <div class="form-group"> |
| 89 | <input type="hidden" name="uf_action" id="uf_action"> |
| 90 | <input type="hidden" name="uf_key_controller_id" id="uf_key_controller_id"> |
| 91 | <button type="button" class="btn btn-primary" onclick="submitOwbcProperties(this.form);">Submit</button> |
| 92 | <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button> |
| 93 | </div> |
| 94 | </form> |
| 95 | </div> |
| 96 | </div> |
| 97 | </div> |
| 98 | </div> |