Is it advisable to make changes in the methods of the Secure class of play framework? Or is there a way around it?
|
|
To make changes to the Secure.class. No, normally, it should be ok in most cases. But, you will have to extend
EDIT : After reading all the comments and understanding Joe's real need, here is part of the solution.
That means :
loginbox.html
|
|||||||||||
|
|
Its better to extend the Security class (as Zenklys mentioned) and override the methods you are interested in. Check this Play Secure document Having said that, nothing prevents you from modifying Secure class itself, but you will need to make sure to reflect the changes on every Play upgrade. UPDATE If you want to have your own login page, its simple, just create 'Secure' folder in you application view folder and add your verion of 'login.html' in there. i.e you are effectively overriding default Secure module login page. |
||||
|
|