Skip to content

Latest commit

 

History

History
52 lines (28 loc) · 1.22 KB

README.md

File metadata and controls

52 lines (28 loc) · 1.22 KB

MOVIE CRUD

Make your own movie rating site.

  1. Create CRUD Routes.
  2. Style your site. However, CRUD is the priority.
  3. Deploy your site

HOME PAGE

  • Your homepage can be whatever you want. Make sure it has a link to your index page.

Home

INDEX PAGE

  • Your index page should list all your movies. The titles of the movies should link to that movies show page. There should be a button that links to each movie's edit page and a button to delete each movie.

Index

NEW PAGE

  • Your new page should have form fields for "title", "director", "year", "your rating", and "poster url".

Index

EDIT PAGE

  • Your edit page should display the poster have form fields for "title", "director", "year", "your rating", and "poster url".

Index

SHOW PAGE

  • Your show page should display the poster and info for "title", "director", "year", and "your rating".

Index

ROUTES

Use the RESTful routes for each of your routes.

  • GET /movies lists all movies
  • POST /movies create a movie
  • GET /movies/:id show a movie
  • PUT /movies/:id edit a movie
  • DELETE /movies/:id delete a movie
  • ... etc