Compare commits

...

2 Commits

Author SHA1 Message Date
Fred Boniface 4b7500278e Fix for #29 2022-10-05 20:40:08 +01:00
Fred Boniface dc5f165c82 Fix for #30 2022-10-05 20:38:27 +01:00
3 changed files with 5 additions and 4 deletions

View File

@ -31,7 +31,7 @@
sendInput($title,$body);
// Redirect to submit-done.php
echo "<script>setTimeout(function(){window.location.href = '/submit-done.php';}, 100);</script>";
echo "<script>setTimeout(function(){window.location.href = '/submit-done.php';}, 10);</script>";
};
?>

View File

@ -9,7 +9,7 @@ body {
.titleimg {
width: 80%;
padding-top: 50px;
padding-bottom: 50px;
padding-bottom: 10px;
max-width: 500px;
transition: 0.2s;
}
@ -17,6 +17,7 @@ body {
.lookup-box {
text-align: center;
border: black;
padding-top: 40px;
border-radius: 40px;
padding: 10px;
margin-bottom: 5px;

View File

@ -23,13 +23,13 @@
<p>You're helping to make Athena better for everyone.</p>
<br>
<br>
<p>You will be redirected to the homepage in five seconds.</p>
<p>You will be redirected to the homepage in three seconds.</p>
</div>
<script>
setTimeout(function(){
window.location.href = '/';
}, 5000);
}, 3000);
</script>
<!-- Footer -->