Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Salesforce by (11.9k points)
Is it possible to create a custom login page in salesforce.com? if so can anyone provide help to create the page and the validations part?

1 Answer

0 votes
by (32.1k points)
edited by

To customize the behavior of the login page, create your own Apex controller. 

Include the Site.login() Apex method. For example:

global PageReference login()

{ return Site.login(username, password, startUrl); }

Want to become a Salesforce Expert? join Salesforce Certification now! 

Browse Categories

...