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.
It is the login.html. You can find it in your deployment/web directory.
Regards,
Ronald
Hi Tiago,
Search in the mendix studio pro login