Changes by vlad

This commit is contained in:
2022-10-03 10:42:01 +03:00
parent 9918e7f5b5
commit 0aa3bdc336
5 changed files with 20 additions and 101 deletions

View File

@@ -0,0 +1,20 @@
{% extends 'base.html' %}
{% block title %} Аккаунт | регистрация {% endblock %}
{% block content %}
<h1 class=deprecated-page-header"> Ваш аккаунт </h1>
<h3>Регистрация</h3>
<form action="" method="POST">
{% csrf_token %}
<table>
<tbody>
{{ form.as_table }}
</tbody>
</table>
<button type="submit">Регистрация</button>
</form>
<div>
Уже зарегистрированы? <a href="{% url 'login' %}">Вход</a>
</div>
{% endblock %}