0
0
No-Codeknowledge~10 mins

Sign up and login workflows in No-Code - Step-by-Step Execution

Choose your learning style9 modes available
Concept Flow - Sign up and login workflows
User opens app
Choose: Sign Up or Login
Sign Up
Enter info
Validate info
Create account
Success
User inside app
Failure
Show error
Retry or Exit
This flow shows how a user chooses to sign up or log in, enters information, validation happens, and then either success or error is shown.
Execution Sample
No-Code
User opens app
User chooses Sign Up
User enters email and password
System validates info
System creates account
User is logged in
This example traces a user signing up by entering info, system validating, and creating an account.
Analysis Table
StepUser ActionSystem ActionResult
1Open appShow options: Sign Up or LoginUser sees choices
2Choose Sign UpShow sign up formUser sees form
3Enter email and passwordValidate email format and password strengthValidation passes
4Submit formCreate new user accountAccount created
5Auto login userGrant access to appUser logged in
6User inside appDisplay dashboardUser can use app
7User logs outEnd sessionUser logged out
8User chooses LoginShow login formUser sees form
9Enter email and passwordCheck credentials against databaseCredentials valid
10Submit loginGrant accessUser logged in
11User inside appDisplay dashboardUser can use app
12User enters wrong passwordCheck credentialsCredentials invalid
13Show error messagePrompt retryUser tries again or exits
💡 User either successfully logs in or signs up, or exits after failed attempts
State Tracker
VariableStartAfter Step 3After Step 4After Step 5After Step 9After Step 12
User ChoiceNoneSign UpSign UpSign UpLoginLogin
Email EnteredNoneuser@example.comuser@example.comuser@example.comuser@example.comuser@example.com
Password EnteredNonepassword123password123password123password123wrongpass
Validation StatusNonePassedPassedPassedN/AN/A
Account CreatedNoNoYesYesYesYes
Login StatusNoNoNoYesNoNo
Error MessageNoneNoneNoneNoneNoneInvalid credentials
Key Insights - 3 Insights
Why does the system show an error after entering wrong password?
Because at step 12 in the execution table, the credentials check fails, so the system shows an error message prompting retry.
What happens if the email format is invalid during sign up?
At step 3, validation would fail, so the system would not proceed to create an account and would ask the user to correct the email.
Does the user get logged in immediately after sign up?
Yes, as shown in steps 4 and 5, after account creation, the system automatically logs in the user.
Visual Quiz - 3 Questions
Test your understanding
Look at the execution table, what is the system action at step 4?
AValidate email format
BShow login form
CCreate new user account
DDisplay dashboard
💡 Hint
Check the 'System Action' column for step 4 in the execution table.
At which step does the user see an error message for invalid credentials?
AStep 12
BStep 13
CStep 10
DStep 9
💡 Hint
Look for 'Show error message' in the 'User Action' column in the execution table.
If the user chooses Login instead of Sign Up, what is the user choice variable after step 9?
ALogin
BSign Up
CNone
DError
💡 Hint
Refer to the variable_tracker table under 'User Choice' after step 9.
Concept Snapshot
Sign up and login workflows:
1. User chooses Sign Up or Login.
2. User enters info (email, password).
3. System validates info or credentials.
4. On success, account is created or access granted.
5. On failure, error shown and retry allowed.
6. User accesses app after successful login.
Full Transcript
This visual execution shows the steps a user takes to sign up or log in to an app. The user first opens the app and chooses either to sign up or log in. If signing up, the user enters email and password, which the system validates. If valid, the system creates the account and logs the user in automatically. If logging in, the user enters credentials which the system checks. If correct, access is granted. If any validation or credential check fails, the system shows an error and allows retry. Variables like user choice, email, password, validation status, account creation, login status, and error messages change step by step as shown in the tables. This helps beginners see exactly what happens inside the app during these workflows.