|
Line 0
Link Here
|
|
|
1 |
<!-- Add concern modal --> |
| 2 |
<div class="modal" id="addConcernModal" tabindex="-1" role="dialog" aria-labelledby="addConcernModalLabel" aria-hidden="true"> |
| 3 |
<div class="modal-dialog"> |
| 4 |
<div class="modal-content"> |
| 5 |
<div class="modal-header"> |
| 6 |
<h3 class="modal-title" id="addConcernModalLabel">Report a concern</h3> |
| 7 |
<button type="button" class="closebtn" data-dismiss="modal" aria-label="Close"> |
| 8 |
<span aria-hidden="true">×</span> |
| 9 |
</button> |
| 10 |
</div> |
| 11 |
<div class="modal-body"> |
| 12 |
<fieldset id="concern_fieldset"> |
| 13 |
<div class="form-group"> |
| 14 |
<label for="message">Please decribe your concerns: </label> |
| 15 |
<textarea class="form-control" name="message" id="message_add" aria-describedby="helpBlock" required="required"></textarea> |
| 16 |
<p id="helpBlock" class="help-block">A short summary of what the library policy is for dealing with such concerns and what constitutes a valid concern</p> |
| 17 |
</div> |
| 18 |
</fieldset> |
| 19 |
</div> |
| 20 |
<div class="modal-footer"> |
| 21 |
<input type="hidden" name="biblio_id" id="biblio_add" value="[% biblio.biblionumber | html %]"> |
| 22 |
<input type="hidden" name="reporter_id" id="reporter_add" value="[% borrowernumber | html %]"> |
| 23 |
<button type="submit" id="addConfirm" class="btn btn-primary">Submit</button> |
| 24 |
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button> |
| 25 |
</div> |
| 26 |
</div> |
| 27 |
</div> |
| 28 |
</div> |