Initial commit

This commit is contained in:
2022-09-15 22:25:55 +03:00
commit 7582330b1b
70 changed files with 1094 additions and 0 deletions

15
templates/account.html Normal file
View File

@@ -0,0 +1,15 @@
{% extends 'base.html' %}
{% block title %} Аккаунт | вход {% endblock %}
{% block content %}
<h1> Ваш аккаунт </h1>
<h3>Регистрация</h3>
<form action="" method="POST">{% csrf_token %}
<table>
<tbody>
{{ form.as_table }}
</tbody>
</table>
<button type="submit">Регистрация</button>
</form>
{% endblock %}