- <html>
- <title>MovieLib</title>
- <body>
- <h1>Your Movie list</h1>
- <h2>Register</h2>
- <form method="POST" action="/register">
- <input name="username" id="input-username" placeholder="Enter your username" required />
- <input name="email" id="input-email" placeholder="Enter your email" required />
- <input type="password" name="password" id="input-password" placeholder="Enter your password" required />
- <input type="submit" value="Register">
- {% csrf_token %}
- </form>
- </body>
- </html>
|