Advertisement
Guest User

Untitled

a guest
Apr 21st, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. <html>
  2.  
  3. <head>
  4. <script src="./main.js"></script>
  5. <link rel="stylesheet" href="./main.css"/>
  6. </head>
  7.  
  8. <body>
  9. <button onclick="getAllMovies();">Get Movies</button>
  10. <br/>
  11. <br/>
  12. <input type="text" placeholder="id" id="getID" />
  13. <button onclick="getMovieByID();">Get movie by id</button>
  14. <br/>
  15. <br/>
  16. <input type="text" placeholder="id" id="deleteID" />
  17. <button onclick="deleteMovieByID();">Delete movie by id</button>
  18. <br/>
  19. <br/>
  20. <input type="text" placeholder="title" id="title" />
  21. <input type="text" placeholder="Age Rating" id="ageRating" />
  22. <button onclick="createMovie();">Create movie</button>
  23. <br/>
  24. <pre id="output">
  25. </pre>
  26. </body>
  27.  
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement