Make a UserRegistrationForm component. We will need form input fields for the following things:
rin (string)
credits (number) <-- Remember you can change the type prop to number!
schedule_conflict (boolean)
requires_wheelchair_accessible_room (boolean)
mentor_preferences (string)
How To Do
In the client directory, under src/components/ create a UserRegistrationForm.vue file. This will be very similar to the ProjectForm.vue file in that same directory. Replace the props (AKA properties/parameters) with things relevant to UserRegistration (listed above).
What To Do
Make a UserRegistrationForm component. We will need form input fields for the following things:
type
prop tonumber
!How To Do
In the client directory, under
src/components/
create aUserRegistrationForm.vue
file. This will be very similar to theProjectForm.vue
file in that same directory. Replace theprops
(AKA properties/parameters) with things relevant to UserRegistration (listed above).