- <html>
- <title>MovieLib</title>
- <body>
- <h1>Your Movie list</h1>
- <form method="POST">
- <input name="movie-title" id="input-new-movie" placeholder="Enter a movie title" />
- {% csrf_token %}
- </form>
- <table id="movie-table">
- <tr><td>1: {{ new_movie_title }}</td></tr>
- </table>
- </body>
- </html>
|