Signup option needed?

0
I have created a demo project. I have configured admin and user role from security when I land to homepage it gives me option to signin I want to add a option for signup
asked
1 answers
2

Hi,

You can edit the look of the login page by changing the following file in your project directory:

theme/login.html

To add a button to the page paste the following html somewhere within the form tag

<a id="signupButton" href="https://signup.mendix.com" class="btn btn-primary">
   Sign up
</a>

You can set the href to anything you like.

-Andrej

answered