register.html 547 B

123456789101112131415
  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="username" id="input-username" placeholder="Enter your username" required />
  8. <input name="email" id="input-email" placeholder="Enter your email" required />
  9. <input type="password" name="password" id="input-password" placeholder="Enter your password" required />
  10. <input type="submit" value="Register">
  11. {% csrf_token %}
  12. </form>
  13. </body>
  14. </html>