first commit

This commit is contained in:
maher
2026-05-16 17:26:43 +02:00
commit fcc6302ebb
406 changed files with 87325 additions and 0 deletions
@@ -0,0 +1,20 @@
<html>
<body>
<br><br><br><br><br><br><br><br>
<center>
<img src="{{ asset('images/font/spinner.png') }}" alt="">
</center>
</body>
<script>
// sleep time expects milliseconds
function sleep (time) {
return new Promise((resolve) => setTimeout(resolve, time));
}
// Usage!
sleep(3500).then(() => {
window.open("{{ path('frontend_paiement_valider') }}", "_self");
});
</script>
</html>