add missing template
This commit is contained in:
parent
7e4be4a233
commit
fc8d37a655
1 changed files with 22 additions and 0 deletions
22
app/templates/register.html
Normal file
22
app/templates/register.html
Normal file
|
@ -0,0 +1,22 @@
|
|||
{% extends "base.html" %}
|
||||
{% block head %}
|
||||
<title>Login - {{ settings.SITENAME }}</title>
|
||||
{% endblock %}
|
||||
{% block content %}
|
||||
<div class="register">
|
||||
<form method="POST">
|
||||
{% csrf_token %}
|
||||
<input name="username" type="text" placeholder="your username" required></input>
|
||||
<br>
|
||||
<input name="email" type="email" placeholder="your email" required></input>
|
||||
<br>
|
||||
<input name="password" type="password" placeholder="your password" required></input>
|
||||
<br>
|
||||
<div class="buttons">
|
||||
<button id="login">Register</button>
|
||||
</div>
|
||||
<div class="error">{{ error }}</div>
|
||||
</form>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
Loading…
Reference in a new issue