Timoney, Daniel (dt5972) | 324ee36 | 2017-02-15 10:37:53 -0500 | [diff] [blame] | 1 | <div class="modal fade" id="add_phs_credentials" tabindex="-1" role="dialog" |
| 2 | aria-labelledby="add_phs_credentials_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 PHS Credentials</h4> |
| 8 | </div> |
| 9 | <div class="modal-body"> |
| 10 | <form name="addForm" role="form" action="/ucpe/addPhsCredentials" method="POST"> |
| 11 | <div class="form-group"> |
| 12 | <label for="nf_device_vendor_name">*Device Vendor Name</label> |
| 13 | <input type="text" class="form-control" maxlength="255" aria-describedby="helpVName" name="nf_device_vendor_name" id="nf_device_vendor_name" placeholder="varchar(255)"> |
| 14 | <span id="helpVName" class="help-block">The Device Vendor Name must match exactly whats in the PHS Servers table.</span> |
| 15 | </div> |
| 16 | <div class="form-group"> |
| 17 | <label for="nf_customer_name">*Customer Name</label> |
| 18 | <input type="text" class="form-control" maxlength="255" aria-describedby="helpCName" name="nf_customer_name" id="nf_customer_name" placeholder="varchar(255)"> |
| 19 | <span id="helpCName" class="help-block">The Customer Name must match exactly whats in the PHS Servers table.</span> |
| 20 | </div> |
| 21 | <div class="form-group"> |
| 22 | <label for="nf_ip_addresses">*IP Addresses</label> |
| 23 | <input type="text" class="form-control" maxlength="40" aria-describedby="helpIP" name="nf_ip_addresses" id="nf_ip_addresses" placeholder="varchar(40)"> |
| 24 | <span id="helpIP" class="help-block">The IP Addresses must match exactly whats in the PHS Servers table.</span> |
| 25 | </div> |
| 26 | <div class="form-group"> |
| 27 | <label for="nf_phs_username">*PHS Username</label> |
| 28 | <input type="text" class="form-control" maxlength="255" name="nf_phs_username" id="nf_phs_username" placeholder="varchar(255)"> |
| 29 | </div> |
| 30 | <div class="form-group"> |
| 31 | <label for="nf_phs_password">*PHS Password</label> |
| 32 | <input type="password" class="form-control" maxlength="255" name="nf_phs_password" id="nf_phs_password" placeholder="varbinary(255)"> |
| 33 | </div> |
| 34 | <div class="form-group"> |
| 35 | <label for="nf_phs_password">*Confirm PHS Password</label> |
| 36 | <input type="password" class="form-control" maxlength="255" name="nf_confirm_phs_password" id="nf_confirm_phs_password" placeholder="varbinary(255)"> |
| 37 | </div> |
| 38 | <div class="form-group"> |
| 39 | <input type="hidden" name="nf_action" id="nf_action"> |
| 40 | <button type="button" class="btn btn-primary" onclick="submitPhsCredentials(this.form);">Submit</button> |
| 41 | <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button> |
| 42 | </div> |
| 43 | </form> |
| 44 | </div> |
| 45 | </div> |
| 46 | </div> |
| 47 | </div> |
| 48 | |
| 49 | <div class="modal fade" id="update_phs_credentials" tabindex="-1" role="dialog" |
| 50 | aria-labelledby="update_phs_credentials_label" aria-hidden="true"> |
| 51 | <div class="modal-dialog"> |
| 52 | <div class="modal-content"> |
| 53 | <div class="modal-header"> |
| 54 | <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> |
| 55 | <h4 class="modal-title">Update PHS Credentials</h4> |
| 56 | </div> |
| 57 | <div class="modal-body"> |
| 58 | <form role="form" action="/ucpe/updatePhsCredentials" method="POST"> |
| 59 | <div class="form-group"> |
| 60 | <label for="uf_device_vendor_name">*Device Vendor Name</label> |
| 61 | <input readonly type="text" class="form-control" name="uf_device_vendor_name" id="uf_device_vendor_name"> |
| 62 | </div> |
| 63 | <div class="form-group"> |
| 64 | <label for="uf_customer_name">*Customer Name</label> |
| 65 | <input readonly type="text" class="form-control" name="uf_customer_name" id="uf_customer_name"> |
| 66 | </div> |
| 67 | <div class="form-group"> |
| 68 | <label for="uf_ip_addresses">*IP Addresses</label> |
| 69 | <input readonly type="text" class="form-control" name="uf_ip_addresses" id="uf_ip_addresses"> |
| 70 | </div> |
| 71 | <div class="form-group"> |
| 72 | <label for="uf_phs_username">*PHS Username</label> |
| 73 | <input type="text" class="form-control" maxlength="255" name="uf_phs_username" id="uf_phs_username"> |
| 74 | </div> |
| 75 | <div class="form-group"> |
| 76 | <label for="uf_phs_password">*PHS Password</label> |
| 77 | <input type="password" class="form-control" maxlength="255" name="uf_phs_password" id="uf_phs_password"> |
| 78 | </div> |
| 79 | <div class="form-group"> |
| 80 | <label for="uf_phs_password">*Confirm PHS Password</label> |
| 81 | <input type="password" class="form-control" maxlength="255" name="uf_confirm_phs_password" id="uf_confirm_phs_password" placeholder="varbinary(255)"> |
| 82 | </div> |
| 83 | <div class="form-group"> |
| 84 | <input type="hidden" name="uf_action" id="uf_action"> |
| 85 | <button type="button" class="btn btn-primary" onclick="submitPhsCredentials(this.form);">Submit</button> |
| 86 | <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button> |
| 87 | </div> |
| 88 | </form> |
| 89 | </div> |
| 90 | </div> |
| 91 | </div> |
| 92 | </div> |