== Writer Registration Process === Authors: **Registered 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. {{{#!sql 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. {{{#!sql INSERT INTO WRITER (user_id) VALUES (8); }}} **6.** The system confirms successful registration and redirects the user to their writer dashboard.