I developed an application that uses Spring Security\'s default login page. However I want to implement my own login page. I will put a login.html instead of a jsp page. I w
There are four requirements for a custom login page in Spring Security:
j_username which will contain the name used for the authentication credentials.j_password which will contain the password used for the authentication credentials.POSTed matches the url defined in the login-processing-url attribute of the form-login element in your Spring Security configuration.login-page attribute of the form-login element in your Spring Security configuration.Login.html
Spring Security Configuration File