Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This guide explains the configuration options that exist for the sign in page. The options are available if Signifikant's user model is used.

Info
titleVersion 4.5
This function is available in version 4.5 and later.

Overview

Login page may have three different designs. The available designs are as below, image choice is configurable.

Blank
Image Added
Centered
Image Added
Left
Image RemovedImage RemovedImage Removed
Image Added


Configuration

Login page is configured in profile.config. 

Code Block
languagexml
titleprofile.config
<LoginSettings>
   <!-- Name of image to be used. If no image specified, blank login will be used -->
   <LoginBackgroundUrl>loginbackground.jpg</LoginBackgroundUrl>
   <!-- Left panel login area configured below. If tag removed centered option will be used. -->
   <LoginPageLayout>LeftPanel</LoginPageLayout>
</LoginSettings>


From version 5.0 and later it is possible to define several images.

Code Block
languagexml
titleprofile.config
<LoginSettings>
   <!-- Name of image to be used. If no image specified, blank login will be used -->
   <LoginBackgroundUrl>loginbackground1.jpg, loginbackground2.jpg, , loginbackground3.jpg</LoginBackgroundUrl>
   <!-- Left panel login area configured below. If tag removed centered option will be used. -->
   <LoginPageLayout>LeftPanel</LoginPageLayout>
   <!-- Next image in list is selected after 24 hrs by default. Number of hours can be changed using below tag. -->
   <loginBackgroundImageHourInterval>1</loginBackgroundImageHourInterval>
</LoginSettings>


...