Skip to content

Commit

Permalink
Merge pull request #164 from OpenUnited/redirect-after-5
Browse files Browse the repository at this point in the history
Redirect to the home page after 5 seconds upon completing the password reset
  • Loading branch information
adrianmcphee authored Nov 6, 2023
2 parents 2cadd9a + e69bb7f commit 4d3fe90
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,10 @@

<p>
<a href="/">Home Page</a>
</p>
</p>

<script>
setTimeout(function () {
window.location.href = "{{ url('home') }}";
}, 5000);
</script>

0 comments on commit 4d3fe90

Please sign in to comment.