You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i.e. each customer that creates an account should only be able to do so once with a single email address.
Have form validation for user login/sign-up
There is also database-level validation on User Model:
User Model for database:
username: not null, not empty and unique,
password: not null and not empty
email: make sure it is unique
userType: ENUM (customer, admin)
The text was updated successfully, but these errors were encountered:
christine-zheng
changed the title
8.1 Admin: have validated data to ensure reliability
8.2 Admin: have validated data to ensure reliability
Nov 10, 2022
( Parent ticket: #41 )
Have form validation for user login/sign-up
There is also database-level validation on User Model:
User Model for database:
username: not null, not empty and unique,
password: not null and not empty
email: make sure it is unique
userType: ENUM (customer, admin)
The text was updated successfully, but these errors were encountered: