UseCase10 - Sign-up
Initiating actor: Guest
Description
A new guest(that doesn't have an account) want to be able to do restricted functions. The guest must sign-up first and when he does he is allowed to do everything a client can.
Scenario
- Clicks on the sign-up button.
- Fills in the form.
- Submits it.
INSERT INTO users (username, email, name, surname, password_hash, created_at) VALUES ( 'client.nina', 'nina.client@petify.com', 'Nina', 'Ristova', 'hash_test_123', NOW() ) RETURNING user_id;
Last modified
13 days ago
Last modified on 01/26/26 22:49:24
Note:
See TracWiki
for help on using the wiki.
