-
Notifications
You must be signed in to change notification settings - Fork 0
Description
Story
As a user, I should be able to fill out a form with my first name, email address, and the password of my choice to register myself in the application. I should then be able to login to the application using the email address and password that I provided.
Acceptance Criteria
Given a user wants to use CheckUp
When the user first accesses the application
Then the user should see a welcome page
And a hyperlink to a registration form
Given a user wants to register an account with Patient Notes
When the user clicks the “Register” hyperlink
Then a registration form should be displayed where the user can enter in their name, email address and password
Given a user has filled out all fields in registration form
When the user clicks the “register” button
Then the system should check if the email address is unique
And if it is unique, a new account should be created
And the user should be taken to the main view of CheckUp/Patient Notes
Given a user has logged in
Then the user should be taken to the main view of CheckUp/Patient Notes which should display:
-
Welcome message
-
Button to track symptoms
-
Upcoming appointments
-
Medication reminder
-
Register
-
Login
-
Authentication