registration implemented
This commit is contained in:
35
templates/base_main.html
Normal file
35
templates/base_main.html
Normal 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 %}
|
Reference in New Issue
Block a user