1
0
Fork 0
mirror of https://github.com/24eme/signaturepdf synced 2024-06-04 15:02:29 +02:00

Using css grid in fixed bottom bar

This commit is contained in:
Vincent LAURENT 2022-03-29 01:05:43 +02:00
parent 933f5b8e42
commit 7fe764d915

View file

@ -35,11 +35,18 @@
<div class="position-fixed bottom-0 start-0 bg-white w-100 p-2 shadow-lg">
<form id="form_pdf" action="/organize" method="post" enctype="multipart/form-data">
<input id="input_pdf" name="pdf" type="file" class="d-none" />
<button class="btn btn-primary float-end" type="submit" id="save"><i class="bi bi-download"></i> Télécharger le PDF</button>
<div class="form-check pt-2 ps-5">
<input class="form-check-input" checked="checked" type="checkbox" id="checkbox_all_pages">
<label class="form-check-label" for="checkbox_all_pages">Sélectionner toutes les pages</label>
</div>
<div class="row">
<div class="col-10">
<div class="form-check">
<input class="form-check-input" checked="checked" type="checkbox" id="checkbox_all_pages">
<label class="form-check-label" for="checkbox_all_pages">Sélectionner toutes les pages</label>
</div>
</div>
<div class="col-2">
<div class="d-grid gap-2">
<button class="btn btn-primary" type="submit" id="save"><i class="bi bi-download"></i> Télécharger le PDF</button>
</div>
</div>
</form>
</div>
</div>