Added a "Register Now" button with logic design behind it. Button is linked to the accountSelectionWindow.vue
Added a hover effect to the button to make it easier for user experience
pages/accountSelectionWindow.vue:
New file created for this issue. Basically opens up a window that gives 4 options: You can create either a "Parent", "Student", "Faculty" class or you can click on "Close" to close the window.
Added some navigation logic to make it flow from the accountSelectionWindow to the registration forms for each respective account type. (ex. Clicking on Parent in the window will take you to the parent registration form)
docker-compose.yml:
Updated port mapping for reading-mlk (3000:3000)
Set database service port to 5432:5432 instead of using the environment variable $POSTGRES_PORT
If you are running with "npm run dev" and using the docker desktop, you don't need to worry about this.
the create parent and create faculty buttons should not navigate to createparent and createfaculty. Those pages are not the pages we want to navigate during registration and should be instead updated to navigate to parentform and facultyform respectively.
also we do not need to have the create student button
the createparent, createfaculty, and createstudent pages are for admins accounts to exclsuively have access to (requested by Rae to personally add parents, faculty, and students)
CHANGES
pages/index.vue:
pages/accountSelectionWindow.vue:
docker-compose.yml: