Changes between Initial Version and Version 1 of UseCase1


Ignore:
Timestamp:
12/27/25 03:06:20 (2 days ago)
Author:
233144
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UseCase1

    v1 v1  
     1== Use-case 1 – User Registration
     2Initiating actor: Guest\\
     3Other actors: /\\
     4
     5The guest user wants to create an account in the system. The system verifies that the username and email are not already in use. If the credentials are valid, the system stores the new user into the database. After successful registration, the user becomes a registered user.\\
     6
     7== Scenario
     8Step 1. Guest clicks on REGISTER button and fills out the registration form with username, email and password.\\
     9
     10Step 2. System validates the input fields and checks if username or email already exist.\\
     11
     12Step 3. System stores the new user in the database.\\
     13
     14        {{{
     15        INSERT INTO users (username, password, email)
     16        VALUES ('new_user', 'password', 'newuser@gmail.com');
     17        }}}
     18
     19Step 4. System redirects the user to the login page.\\