17 lines
570 B
HTML
17 lines
570 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %}Register{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2>Register</h2>
|
|
<form method="post">
|
|
<label for="username">Username</label></br>
|
|
<input type="text" name="username" id="username" required></br>
|
|
<label for="password">Password</label></br>
|
|
<input type="password" name="password" id="password" required></br>
|
|
<label for="password">Confirm password</label></br>
|
|
<input type="password" name="password-2" id="password" required></br></br>
|
|
<input type="submit" value="Register">
|
|
</form>
|
|
{% endblock %}
|