wiki:WriterRegistration

Writer Registration Process

Actor: Writter

A new user registers on the platform as a writer, gaining the ability to create and manage stories.

1. The user selects the option to register as a writer in the platform.

2. The system displays a registration form requesting username, email, name, surname, and password.

3. The user fills in and submits the registration form.

4. The system inserts a new record into the USERS table.

INSERT INTO USERS (username, email, name, surname, password)
VALUES ('maja_newwriter', 'maja.pen@chapterx.com', 'Maja', 'Georgieva', '$2a$10$hashedpassword008');

5. The system registers the user as a writer in the WRITER table using the generated user_id.

INSERT INTO WRITER (user_id)
VALUES (8);

6. The system confirms successful registration and redirects the user to their writer dashboard.

Last modified 2 weeks ago Last modified on 03/05/26 15:48:33
Note: See TracWiki for help on using the wiki.