registration implemented

This commit is contained in:
Egor Matveev
2021-08-29 21:43:34 +03:00
parent f72801d6f5
commit 1307c16ec1
125 changed files with 2158 additions and 4631 deletions

35
templates/base_main.html Normal file
View File

@@ -0,0 +1,35 @@
{% extends 'base.html' %}
{% block body %}
<div class="header">
<button
class="btn btn-light header-button"
onclick="window.location.href='/'">
<i class="fa fa-random"></i> Главная
</button>
<button class="btn btn-light header-button"
onclick="window.location.href='/tasks'">
<i class="fa fa-tasks"></i> Задачи
</button>
<button class="btn btn-light header-button"
onclick="window.location.href='/sets'">
<i class="fa fa-th-large"></i> Сеты
</button>
<button class="btn btn-light header-button"
onclick="window.location.href='/rating'">
<i class="fa fa-arrow-up"></i> Рейтинг
</button>
<div class="button-right" style="margin-top: -35px;">
<button class="btn btn-light header-button"
onclick="window.location.href='/account'">
<i class="fa fa-user"></i> Аккаунт
</button>
<button class="btn btn-light header-button"
onclick="window.location.href='/exit'">
<i class="fa fa-sign-out"></i> Выход
</button>
</div>
</div>
{% block main %}
{% endblock %}
{% endblock %}