LOGIN SCREEN

0
Good afternoon,  Where Can I find this page to edit in Mendix Studio Pro? This page appear after enabling the security.  
asked
3 answers
0

Look in: <yourproject-directory>\theme\web\login.html

You can do anything you want with it.

 

To change for instance the image on the left, see the class used for that purpose:

        <div class="loginpage">
            <div class="loginpage-left">
                <div class="loginpage-image"></div>
            </div>

which is:

        // 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%);
        }

Change url("./resources/work-do-more.jpeg") to whatever image you like.

 

answered
0

It is the login.html. You can find it in your deployment/web directory.

Regards,

Ronald

 

answered
0

Hi Tiago,

 

Search in the mendix studio pro login 

 

image.png

answered