Create Signup page

Page Variables

Create a new page and call it signup.

In the VARIABLES page select PAGE VARIABLES add 3 text variables for the name, email and password fields.

User Interface

Click on VIEW and add 3 input fields, 1 button and 1 paragraph as shown below. Bind the input fields to the corresponding page variables defined above. Set the Password input to True for the password field.

Signup button logic

Click on the Signup button and add the following logic. For the Create record select the Signup data resource and set the parameters to the page variables.

Click on the text for navigating back to the Login page and add the following logic.

Note that we're not using the Open page action and instead using the Return to initial view because we don't want to keep pushing the pages on the navigation stack as the users navigates from the signup to the login page. Else if they press the back button on the login page they may be taking to the signup page instead of quitting the app. You can also use the Navigate back action here.

Last updated