My project .xsaccess file has:
{
"exposed": true,
"authentication": [
{
"method": "Basic"
}
]
}
Thus when I try to access a content from my browser, I get a standard browser pop up requesting the user name and password. This works fine for now.
What I would like instead is have my own customized login page so that I can tailor the look and feel, clear out any previous session, show my application logo and share additional information/news with the user.
I understand I could change the "method" above to "Form". But where and how do I name my custom form html and what method/services to call from there? Is there a document that shows an example?
Thanks