diff --git a/templates/landing_form.html b/templates/landing_form.html index 13b5438..72ea4b0 100644 --- a/templates/landing_form.html +++ b/templates/landing_form.html @@ -34,7 +34,7 @@

Test d'éligibilité par PTO

-
+
- +
@@ -208,10 +208,25 @@ }); $('#formAddressTest').submit(function(eventObj) { + // disable button + $("#btnTestAdresse").prop("disabled", true); + // add spinner to button + $("#btnTestAdresse").html( + `Test...` + ); $('#formAddressTest').append(``); $('#formAddressTest').append(``); return true; }); + $('#formPtoTest').submit(function(eventObj) { + // disable button + $("#buttonPtoTest").prop("disabled", true); + // add spinner to button + $("#buttonPtoTest").html( + `Test...` + ); + return true; + }); });