<div class="modal fade" id="add_vrr_credentials" tabindex="-1" role="dialog" aria-labelledby="add_vrr_credentials_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 VRR Credentials</h4> </div> <div class="modal-body"> <form name="addForm" role="form" action="/sdnfc/addVrrCredentials" method="POST"> <div class="form-group"> <label for="nf_server_name">*Server Name</label> <input type="text" class="form-control" maxlength="50" name="nf_server_name" id="nf_server_name" placeholder="varchar(50)"> </div> <div class="form-group"> <label for="nf_ip_address">*IP Address</label> <input type="text" class="form-control" maxlength="15" name="nf_ip_address" id="nf_ip_address" placeholder="varchar(15)"> </div> <div class="form-group"> <label for="nf_username">*Username</label> <input type="text" class="form-control" maxlength="50" name="nf_username" id="nf_username" placeholder="varchar(50)"> </div> <div class="form-group"> <label for="nf_password">*Password</label> <input type="password" class="form-control" maxlength="255" name="nf_password" id="nf_password" placeholder="varbinary(255)"> </div> <div class="form-group"> <label for="nf_confirm_password">*Confirm Password</label> <input type="password" class="form-control" maxlength="255" name="nf_confirm_password" id="nf_confirm_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="submitVrrCredentials(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_vrr_credentials" tabindex="-1" role="dialog" aria-labelledby="update_vrr_credentials_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 VRR Credentials</h4> </div> <div class="modal-body"> <form role="form" action="/sdnfc/updateVrrCredentials" method="POST"> <div class="form-group"> <label for="uf_server_name">*Server Name</label> <input type="text" class="form-control" maxlength="50" name="uf_server_name" id="uf_server_name" placeholder="varchar(50)"> </div> <div class="form-group"> <label for="uf_ip_address">*IP Address</label> <input type="text" class="form-control" maxlength="15" name="uf_ip_address" id="uf_ip_address" placeholder="varchar(15)"> </div> <div class="form-group"> <label for="uf_username">*Username</label> <input type="text" class="form-control" maxlength="50" name="uf_username" id="uf_username" placeholder="varchar(50)"> </div> <div class="form-group"> <label for="uf_password">*Password</label> <input type="password" class="form-control" maxlength="255" name="uf_password" id="uf_password" placeholder="varbinary(255)"> </div> <div class="form-group"> <label for="uf_confirm_password">*Confirm Password</label> <input type="password" class="form-control" maxlength="255" name="uf_confirm_password" id="uf_confirm_password" placeholder="varbinary(255)"> </div> <div class="form-group"> <input type="hidden" name="uf_action" id="uf_action"> <input type="hidden" name="uf_key_server_name" id="uf_key_server_name"> <button type="button" class="btn btn-primary" onclick="submitVrrCredentials(this.form);">Submit</button> <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button> </div> </form> </div> </div> </div> </div>