On this page
The Login Screen Customization tutorial provides an initial worked example, using some GitHub resources, to show how to brand the HTML form login screen. Read the initial tutorial before this one, so that you first understand the basic techniques. This tutorial reuses those customization behaviors, then adds some additional ones, to show how to implement multiple distinct branded login screens. The following fake brands are used.


Locate Customized Files
Clone the GitHub repository at the top of this page, then inspect the brand's customized files in the recipes/multi-brand
folder, to understand the folder layout.
1234567891011121314151617181920212223242526272829
├── multi-brand│ ├── images│ │ └── sb-group-logo-white.svg│ │ └── sb-group-logo.svg│ │ └── sb-group-symbol.svg│ │ └── sb-insurance-logo-white.svg│ │ └── sb-insurance-logo.svg│ │ └── sb-insurance-symbol.svg│ ├── messages│ │ └── overrides│ │ └── en│ │ └── authenticator│ │ └── html-form│ │ └── authenticate│ │ └── messages│ ├── scss│ │ └── sb-group-theme.scss│ │ └── sb-insurance-theme.scss│ ├── templates│ │ └── overrides│ │ └── authenticator│ │ └── html-form