Login
In this article you can learn the various ways of customizing the Umbraco backoffice login screen and form.
Last updated
In this article you can learn the various ways of customizing the Umbraco backoffice login screen and form.
Last updated
To access the backoffice, you will need to login. You can do this by adding /umbraco
at the end of your website URL, for example http://mywebsite.com/umbraco
.
You will be presented with a login form similar to this:
The login screen contains a short greeting, a login form and an optional Forgotten password link.
Below, you will find instructions on how to customize the login screen.
The login screen features a greeting text: The "Welcome" headline. This can be personalized by overriding the existing language translation keys.
To do this follow the steps below:
Register a 'localization' manifest for the default language of your Umbraco site, (usually en-US) to override the greetings.
Add an en-us.js
file containing the following:
This will override the default greetings with the ones you provide. The login screen will now display "It is Sunday" instead of "Welcome" for example.
The login screen has its own set of localization files independent of the rest of the Backoffice. You can read more about Backoffice localization in the UI Localization article.
You can customize other text on the login screen as well. First, grab the default values and keys from the en.ts in the Umbraco CMS Github repository. Thereafter copy the ones you want to translate into ~/App_Plugins/Login/umbraco-package.json
file.
The Forgotten password? link allows your backoffice users to reset their password. To use this feature, you will need to add the following key to the Umbraco.Cms.Security
section in the appsettings.json
file:
Set it to true
to enable the password reset feature, and false
to disable the feature.
You will also need to configure a Simple Mail Transfer Protocol (SMTP) server in your appsettings.json
file. When you get a successful result on the SMTP configuration when running a health check in the backoffice, you are good to go!
An example:
It is possible to customize the background image and the logo for the backoffice login screen by adding the "Content"
section in the appsettings.json
file:
The LoginBackgroundImage
, LoginLogoImage
, and LoginLogoImageAlternative
are referenced from the /wwwroot/umbraco/
folder.
The LoginLogoImage
is displayed on top of the LoginBackgroundImage
and the LoginLogoImageAlternative
is displayed when the LoginLogoImage
is not available, for example on small resolutions.
You can also customize the login screen by adding a custom CSS file. To do this, you will need to add a new file inside the ~/App_Plugins
folder, for example ~/App_Plugins/Login/my-custom-login-screen.css
.
You can then add your custom CSS to the file:
This will change the color of the SVG graphics (curves) shown on the login screen. You can also hide the curves by adding the following CSS:
To tell Umbraco about your custom CSS file, you will need to add a umbraco-package.json
file. The umbraco-package.json
file should look like this:
Next add a JavaScript file, for example ~/App_Plugins/Login/my-custom-login-screen.js
, and add the following code to load the custom CSS file:
This will load the custom CSS file into Umbraco.
Be aware that the custom CSS file will be loaded on all Umbraco screens, not only the login screen.
The following CSS properties are available for customization:
CSS Property | Description | Default Value |
---|---|---|
| The background of the layout |
|
| The color of the headline |
|
| The color of the text |
|
| The font-size of the headline |
|
| The font-size of the headline on large screens |
|
| The font-size of the secondary headline |
|
| The background of the image wrapper | The value of the LoginBackgroundImage setting |
| The display of the image wrapper |
|
| The border-radius of the image wrapper |
|
| The background of the content wrapper |
|
| The display of the content wrapper |
|
| The width of the content wrapper |
|
| The height of the content wrapper |
|
| The border-radius of the content wrapper |
|
| The align-items of the main wrapper |
|
| The border-radius of the buttons |
|
| The color of the curves |
|
| The display of the curves |
|
The CSS custom properties may change in future versions of Umbraco. You can always find the latest values in the login layout element in the Umbraco CMS Github repository.
The time out screen is displayed when the user has been inactive for a certain amount of time. The screen resembles the login screen in many ways and the two are sometimes confused. The most notable difference is that the time out screen does not have a login form. It only has a message and a button to log in again with Umbraco.
If you have added more than one login provider, the users will also see this screen first. This is because they need to choose which provider to use first. In that case, the screen is also referred to as the Choose provider screen.
You can customize the time out screen in the same way as the login screen. The time out screen uses the same localization files as the rest of the Backoffice and not those of the login screen. The notable difference is that the time out screen is scoped to the login
section. The login screen is scoped to the auth
section of the localization files.
To update the greeting message on this screen, you will have to change the section to login
:
The en-us.js
file should contain the following:
The instruction
key is shown when the user has timed out, and the greeting0..6
keys are shown when the user has to choose a login provider.
You can update the image on the time out screen through a custom CSS variable. The default value is --umb-login-image
and it is set to the same value as the login screen. You can override this value in your custom CSS file: