Changes in login page

0
Hi forum, i want to do customization in the login page just change the image as shown in below screenshot i want to give image of my choice so how i will do.
asked
3 answers
1

Can be done without creating a custom login-page: change image /resources/work-do-more.jpeg (or whatever image you are using)

 

FYI: See _login.scss to find which you use

        // Image and clipping mask
        .loginpage-image {
            height: 100%;
            animation: makePointer 1s ease-out both;
            background: left / cover no-repeat
                    linear-gradient(to right, rgba($brand-primary, 0.9) 0%, rgba($brand-primary, 0.6) 100%),
                left / cover no-repeat url("./resources/work-do-more.jpeg");
            -webkit-clip-path: polygon(0% 0%, 100% 0, 100% 50%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 0, 100% 50%, 100% 100%, 0% 100%);
        }

 

answered
0

Hello Rahul,

 

There are many options on how to do this:

 

1. create your own sign in page and add this page to the navigation profile

image.png

2. Change the login.html file 

image.png

 

Hope this helps,

 

Good luck!

answered
0

Hi Rahul,

Just search Login -> copy the layout & paste it on the new page(make a new page) -> change your image -> assign anonymous user role for this page -> now use this page in the navigation sign in tab 

answered