first commit
This commit is contained in:
20
templates/frontend/reservation_panier/paiement.html.twig
Normal file
20
templates/frontend/reservation_panier/paiement.html.twig
Normal file
@@ -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>
|
||||
Reference in New Issue
Block a user