auto redirect after payment

This commit is contained in:
Matěj Divecký 2023-02-26 15:00:23 +01:00
parent 14e8ab22f2
commit 395a2552aa
2 changed files with 10 additions and 2 deletions

View file

@ -8,5 +8,9 @@
<form action="/">
<input type="submit" value="Další!" autofocus/>
</form>
<script>
var timer = setTimeout(function() {
window.location='/'
}, 5000);
</script>
{% endblock %}

View file

@ -8,5 +8,9 @@
<input type="submit" value="Další!" autofocus/>
</form>
<script>
var timer = setTimeout(function() {
window.location='/'
}, 5000);
</script>
{% endblock %}