2023-08-21 12:18:52 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
{% block head %}
|
2025-01-23 14:03:55 +05:30
|
|
|
<title>Register - {{ settings.SITENAME }}</title>
|
2023-08-21 12:18:52 +02:00
|
|
|
{% 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 %}
|
|
|
|
|
|