maddockj1 / movie-crud

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MOVIE CRUD

Make your own movie rating site.

  1. Fork and Clone this repository
  2. Create CRUD Routes.
  3. Style your site. However, CRUD is the priority.
  4. 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

About


Languages

Language:JavaScript 61.0%Language:HTML 37.0%Language:CSS 2.0%