<div class="modal fade" id="add_partner_properties" tabindex="-1" role="dialog" aria-labelledby="add_partner_properties_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">Add Partner Properties</h4> </div> <div class="modal-body"> <form name="addForm" role="form" action="/tunnel/addPartnerProperties" method="POST"> <div class="form-group"> <label for="nf_partner">*Partner</label> <input type="text" class="form-control" maxlength="100" name="nf_partner" id="nf_partner" placeholder="varchar(100)"> </div> <div class="form-group"> <label for="nf_auth_username">*Auth Username</label> <input type="text" class="form-control" maxlength="80" name="nf_auth_username" id="nf_auth_username" placeholder="varchar(80)"> </div> <div class="form-group"> <label for="nf_auth_password">*Auth Password</label> <input type="password" class="form-control" maxlength="255" name="nf_auth_password" id="nf_auth_password" placeholder="varbinary(255)"> </div> <div class="form-group"> <label for="nf_confirm_auth_password">*Confirm Auth Password</label> <input type="password" class="form-control" maxlength="255" name="nf_confirm_auth_password" id="nf_confirm_auth_password" placeholder="varbinary(255)"> </div> <div class="form-group"> <input type="hidden" name="nf_action" id="nf_action"> <button type="button" class="btn btn-primary" onclick="submitPartnerProperties(this.form);">Submit</button> <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button> </div> </form> </div> </div> </div> </div> <div class="modal fade" id="update_partner_properties" tabindex="-1" role="dialog" aria-labelledby="update_partner_properties_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">Update Partner Properties</h4> </div> <div class="modal-body"> <form role="form" action="/tunnel/updatePartnerProperties" method="POST"> <div class="form-group"> <label for="uf_partner">*Partner</label> <input type="text" class="form-control" maxlength="100" name="uf_partner" id="uf_partner" placeholder="varchar(100)"> </div> <div class="form-group"> <label for="uf_auth_username">*Auth Username</label> <input type="text" class="form-control" maxlength="80" name="uf_auth_username" id="uf_auth_username" placeholder="varchar(80)"> </div> <div class="form-group"> <label for="uf_auth_password">*Auth Password</label> <input type="password" class="form-control" maxlength="255" name="uf_auth_password" id="uf_auth_password" placeholder="varbinary(255)"> </div> <div class="form-group"> <label for="uf_confirm_auth_password">*Confirm Auth Password</label> <input type="password" class="form-control" maxlength="255" name="uf_confirm_auth_password" id="uf_confirm_auth_password" placeholder="varbinary(255)"> </div> <div class="form-group"> <input type="hidden" name="uf_action" id="uf_action"> <input type="hidden" name="uf_key_partner" id="uf_key_partner"> <button type="button" class="btn btn-primary" onclick="submitPartnerProperties(this.form);">Submit</button> <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button> </div> </form> </div> </div> </div> </div>