Skip to content

Commit

Permalink
Legg til advarsel på innleveringssiden
Browse files Browse the repository at this point in the history
  • Loading branch information
sondregronas committed Sep 14, 2023
1 parent 4fd3b26 commit 5b4f51e
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions BookingSystem/templates/forms/return.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,24 @@

<script>
$(document).ready(function () {
$.confirm({
title: 'Gå gjennom utstyret før innlevering!',
content: '<li>Se gjennom vesker/etui - bekreft at alt er på plass<br>' +
'<li>Sjekk minnekort og annet medfølgende tilbehør<br>' +
'<li>Sett eventuelle batterier til lading<br>' +
'<br>' +
'<b>Eventuelle avvik skal registreres.</b>',
type: 'orange',
icon: 'fa fa-exclamation-triangle',
buttons: {
ok: {
text: 'Den er grei!',
btnClass: 'btn-blue',
action: function () {
}
}
}
})
$('#id').focus();
$('form').submit(function (event) {
event.preventDefault();
Expand Down

0 comments on commit 5b4f51e

Please sign in to comment.