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, e.g. http://mywebsite.com/umbraco.
You will be presented with a login form similar to this:
The login screen contains a Greeting, Email, Password field and optionally a Forgotten password link
Below, you will find instructions on how to customise the login screen.
The login screen features a greeting which you can personalize by overriding the existing language translation keys. To do this, create a 'user' translation file for the default language of your Umbraco site, (usually en-US) to override the greetings. For en-US, you'd create a file called: en_us.user.xml
in the directory ~/config/lang/
. Then take the relevant keys (listed below) and add them to your ~/config/lang/en_us.user.xml
file, and update the greetings as necessary. Note: the config
directory needs to be in the root of your project (not the wwwroot
).
You can customize other text on the login screen as well. First, grab the default values and keys from ~/umbraco/config/lang/en.xml
. Thereafter copy the ones you want to translate into ~/config/lang/en_us.user.xml
file. Note: the new /config/ folder needs to be created at the site root.
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 an 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
and LoginLogoImage
are referenced from the /wwwroot/umbraco/
folder.
To affect the styling of the images add a folder to the /App_Plugins
folder containing a CSS
folder, containing a CSS file, and a package.manifest file. An example structure might be:
An example stylesheet might be:
An example package.manifest might be: