The user who comes to the application for the first time becomes a member of the system by filling out the “Register” form. This will give the user a personal account and access to all other functions of the app.
Adding a Sign Up Action to the Sign Up Form
Log in to the Kuika platform.
Open the project you are working on from the Apps screen.
Switch to the UI Design module.
Drag and drop a Form and related Text Input fields (Email, Password, First Name, Last Name etc.) from the Elements panel on the left side.
Add a Button under the Form and write “Register” in the Label.
Select the button and click the + ADD ACTION menu from the Properties panel on the right.
Select the OnClick → Authorization → Sign Up action.
Configuring the Sign Up Action
In the action configuration window that opens, define the following fields:
User Name: formData.email
Password: formData.password
First Name: formData.firstName
Last Name: formData.lastName
Optional Settings:
Confirm Email: true (If email verification is requested)
Don't Send Email: false (Send notification email after registration)
Phone Number: formData.phone
Language: “en” (Turkish language can be selected by default)
User Experience After Registration
When the user fills in the form and clicks the “Register” button:
The user's information is saved in the system.
If email verification is enabled, the user will receive a verification link.
If the registration is successful, the user can log in automatically or be redirected to the “Thank you” page (with an optional Navigate action).
Thanks to this scenario, users can easily register to the application and log in with their personal accounts.