register.html 403 B

12345678910111213
  1. <html>
  2. <title>MovieLib</title>
  3. <body>
  4. <h1>Your Movie list</h1>
  5. <h2>Register</h2>
  6. <form method="POST" action="/register">
  7. <input name="email" id="input-email" placeholder="Enter your email" required />
  8. <input type="password" name="password" id="input-password" placeholder="Enter your password" required />
  9. {% csrf_token %}
  10. </form>
  11. </body>
  12. </html>