Timoney, Daniel (dt5972) | 324ee36 | 2017-02-15 10:37:53 -0500 | [diff] [blame] | 1 | <div class="modal fade" id="add_partner_properties" tabindex="-1" role="dialog" |
| 2 | aria-labelledby="add_partner_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 Partner Properties</h4> |
| 8 | </div> |
| 9 | <div class="modal-body"> |
| 10 | <form name="addForm" role="form" action="/tunnel/addPartnerProperties" method="POST"> |
| 11 | <div class="form-group"> |
| 12 | <label for="nf_partner">*Partner</label> |
| 13 | <input type="text" class="form-control" maxlength="100" name="nf_partner" id="nf_partner" placeholder="varchar(100)"> |
| 14 | </div> |
| 15 | <div class="form-group"> |
| 16 | <label for="nf_auth_username">*Auth Username</label> |
| 17 | <input type="text" class="form-control" maxlength="80" name="nf_auth_username" id="nf_auth_username" placeholder="varchar(80)"> |
| 18 | </div> |
| 19 | <div class="form-group"> |
| 20 | <label for="nf_auth_password">*Auth Password</label> |
| 21 | <input type="password" class="form-control" maxlength="255" name="nf_auth_password" id="nf_auth_password" placeholder="varbinary(255)"> |
| 22 | </div> |
| 23 | <div class="form-group"> |
| 24 | <label for="nf_confirm_auth_password">*Confirm Auth Password</label> |
| 25 | <input type="password" class="form-control" maxlength="255" name="nf_confirm_auth_password" id="nf_confirm_auth_password" placeholder="varbinary(255)"> |
| 26 | </div> |
| 27 | <div class="form-group"> |
| 28 | <input type="hidden" name="nf_action" id="nf_action"> |
| 29 | <button type="button" class="btn btn-primary" onclick="submitPartnerProperties(this.form);">Submit</button> |
| 30 | <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button> |
| 31 | </div> |
| 32 | </form> |
| 33 | </div> |
| 34 | </div> |
| 35 | </div> |
| 36 | </div> |
| 37 | |
| 38 | <div class="modal fade" id="update_partner_properties" tabindex="-1" role="dialog" |
| 39 | aria-labelledby="update_partner_properties_label" aria-hidden="true"> |
| 40 | <div class="modal-dialog"> |
| 41 | <div class="modal-content"> |
| 42 | <div class="modal-header"> |
| 43 | <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> |
| 44 | <h4 class="modal-title">Update Partner Properties</h4> |
| 45 | </div> |
| 46 | <div class="modal-body"> |
| 47 | <form role="form" action="/tunnel/updatePartnerProperties" method="POST"> |
| 48 | <div class="form-group"> |
| 49 | <label for="uf_partner">*Partner</label> |
| 50 | <input type="text" class="form-control" maxlength="100" name="uf_partner" id="uf_partner" placeholder="varchar(100)"> |
| 51 | </div> |
| 52 | <div class="form-group"> |
| 53 | <label for="uf_auth_username">*Auth Username</label> |
| 54 | <input type="text" class="form-control" maxlength="80" name="uf_auth_username" id="uf_auth_username" placeholder="varchar(80)"> |
| 55 | </div> |
| 56 | <div class="form-group"> |
| 57 | <label for="uf_auth_password">*Auth Password</label> |
| 58 | <input type="password" class="form-control" maxlength="255" name="uf_auth_password" id="uf_auth_password" placeholder="varbinary(255)"> |
| 59 | </div> |
| 60 | <div class="form-group"> |
| 61 | <label for="uf_confirm_auth_password">*Confirm Auth Password</label> |
| 62 | <input type="password" class="form-control" maxlength="255" name="uf_confirm_auth_password" id="uf_confirm_auth_password" placeholder="varbinary(255)"> |
| 63 | </div> |
| 64 | <div class="form-group"> |
| 65 | <input type="hidden" name="uf_action" id="uf_action"> |
| 66 | <input type="hidden" name="uf_key_partner" id="uf_key_partner"> |
| 67 | <button type="button" class="btn btn-primary" onclick="submitPartnerProperties(this.form);">Submit</button> |
| 68 | <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button> |
| 69 | </div> |
| 70 | </form> |
| 71 | </div> |
| 72 | </div> |
| 73 | </div> |
| 74 | </div> |