Reputation: 11
I am working on a project in Mojolicious and I do not know how to redirect through a button to another page. For example I have pagina1.pl and I want that by means of a button send me to pagina2.pl. How do I do it?
Upvotes: 1
Views: 260
Reputation: 520
You can use button_to
tag helper to do redirects to other routes. You can find more information in the documentation
Upvotes: 1