== Client Registration ==== Actors: Guest User **1.** The user opens the registration page. **2.** Personal data is entered. **3.** The user is authenticated through email. **4.** The application inserts a new record into {{{client}}}. {{{#!sql INSERT INTO client (client_ID, first_name, last_name, email, password) VALUES ('1001', 'Elena', 'Stojanova', 'elena@gmail.com', '*sufhIIUs734hkdsb&'); }}} **5.** If provided a delivery address, it is saved in {{{delivery_address}}}. {{{#!sql INSERT INTO delivery_address (client_ID, address, city, postcode, country) VALUES (1001, 'st.Center num.10', 'Skopje', '1000', 'North Macedonia'); }}}