Timoney, Daniel (dt5972) | 324ee36 | 2017-02-15 10:37:53 -0500 | [diff] [blame] | 1 | <div class="modal fade" id="update_parameter" tabindex="-1" role="dialog" |
| 2 | aria-labelledby="parameter_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">Update Parameter</h4> |
| 8 | </div> |
| 9 | <div class="modal-body"> |
| 10 | <form name="updateForm" role="form" action="/admin/updateParameter" method="POST"> |
| 11 | <div class="form-group"> |
| 12 | <label for="uf_name">*Name</label> |
| 13 | <input maxlength="100" type="text" class="form-control" name="uf_name" id="uf_name" placeholder="varchar(100)"> |
| 14 | </div> |
| 15 | <div class="form-group"> |
| 16 | <label for="uf_value">*Value</label> |
| 17 | <input maxlength="100" type="text" class="form-control" name="uf_value" id="uf_value" placeholder="varchar(100)"> |
| 18 | </div> |
| 19 | <div class="form-group"> |
| 20 | <label for="uf_category">Category</label> |
| 21 | <input maxlength="24" type="text" class="form-control" name="uf_category" id="uf_category" placeholder="varchar(24)"> |
| 22 | </div> |
| 23 | <div class="form-group"> |
| 24 | <label for="uf_memo">Memo</label> |
| 25 | <input maxlength="128" type="text" class="form-control" name="uf_memo" id="uf_memo" placeholder="varchar(128)"> |
| 26 | </div> |
| 27 | <div class="form-group"> |
Rotundo, Al (ar3165) | 18dcbec | 2019-07-31 14:46:56 +0000 | [diff] [blame^] | 28 | <input type="hidden" name="_csrf" value="<%= privilege.csrfToken %>" /> |
Timoney, Daniel (dt5972) | 324ee36 | 2017-02-15 10:37:53 -0500 | [diff] [blame] | 29 | <input type="hidden" name="nf_action" id="nf_action"> |
| 30 | <input type="hidden" name="uf_key_name" id="uf_key_name"> |
| 31 | <button type="button" class="btn btn-primary" onclick="submitParam(this.form);">Submit</button> |
| 32 | <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button> |
| 33 | </div> |
| 34 | </form> |
| 35 | </div> |
| 36 | </div> |
| 37 | </div> |
| 38 | </div> |