Add some visual indicators that authorisations have been submitted.

This will show teccies and clients that RIGS is processing emails which can take a short while.
Should prevent duplicate sending.
This commit is contained in:
Tom Price
2017-05-17 18:59:06 +01:00
parent 36d258253f
commit 4b87b0a196
5 changed files with 39 additions and 5 deletions

View File

@@ -7,7 +7,14 @@
<script>
$(function () {
$('[data-toggle="tooltip"]').tooltip();
})
});
$('form').on('submit', function() {
$('#loading-modal').modal({
backdrop: 'static',
show: true
});
});
</script>
{% endblock %}