wiki:ClientRegistration

Version 1 (modified by 235018, 13 hours ago) ( diff )

--

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.

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.

INSERT INTO delivery_address (client_ID, address, city, postcode, country)
VALUES (1001, 'st.Center num.10', 'Skopje', '1000', 'North Macedonia');

Note: See TracWiki for help on using the wiki.