How can I show a custom 400 error page in playframework 1.2.x?

My problem is that I want to give a bad response request for this request, and also make a pretty nice page for the user to view. How to create such a template in playframework 1.2.x?

Thanks Val

+5
source share
1 answer

You just need to create a new package called "errors" in your package "views".

Then you can create personalized error pages with the name "404.html" or "500.html", etc. inside your package "errors".

+1
source

All Articles