CadmiumRed40 / FindAFlick

Group Movie App
4 stars 3 forks source link

Style the /signup page and update User model based on "About Me" section #19

Open floorrinse opened 1 year ago

floorrinse commented 1 year ago

The router, controller, and view are already done for the /signup page so this ticket is to style the page and update the User model based on the new fields in the design (First Name, Last Name, Date of Birth, description box)

Whole mockup for reference

Things to implement:

AllieGie commented 1 year ago

@CadmiumRed40 While trying to implement the back button on the signup form, I've come across an issue with the methods. The Back button needs to utilize the GET method to take the user back to the / index page, while the SignUp Button once the user completes their credentials and about me needs to use a POST method. After doing some research, it seems you can only implement one method in each form.

Can we try implementing the back button elsewhere on the page to fix this?

floorrinse commented 1 year ago

@CadmiumRed40 While trying to implement the back button on the signup form, I've come across an issue with the methods. The Back button needs to utilize the GET method to take the user back to the / index page, while the SignUp Button once the user completes their credentials and about me needs to use a POST method. After doing some research, it seems you can only implement one method in each form.

Can we try implementing the back button elsewhere on the page to fix this?

Would it make sense to have what we originally thought with one page for /signup and one page for /login so that we wouldn't have to worry about the back button?