feat: redirect after submit

This commit is contained in:
Rushil Umaretiya 2022-02-16 16:32:26 -05:00
parent c19b30c11a
commit 9038ef2e96

View File

@ -20,6 +20,16 @@ body {
}
</style>
{% if success %}
<script type="text/javascript">
function redirect()
{
window.location="http://www.google.com";
}
setTimeout('redirect()', 5000);
</script>
{% endif %}
{% endblock %}