As a system
I need to verify that the creator code is correct
So that only authorized admin accounts can be created
Details and Assumptions
The creator code must be entered when attempting to create an admin account.
The system checks the entered code against the stored valid creator code.
Acceptance Criteria
Scenario: Correct creator code entered
Given a user is attempting to create an admin account
When they enter the correct creator code
Then the system verifies the code
And the admin account creation process proceeds
Scenario: Incorrect creator code entered
Given a user is attempting to create an admin account
When they enter an incorrect creator code
Then the system denies the account creation
And an error message is displayed saying "Invalid creator code"
As a system I need to verify that the creator code is correct So that only authorized admin accounts can be created
Details and Assumptions
Acceptance Criteria