2021-02-07 15:02:08 +03:00

18 lines
650 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends 'base/base.html' %}
{% block title %}
Главная
{% endblock %}
{% block content %}
<div class="d-flex h-300 text-center">
<div class="mt-5 d-flex w-50 h-300 p-3 mx-auto flex-column">
<h2 class="mt-4 mb-4">Добро пожаловать!</h2>
<h4 class=" mt-4">Мы рады приветствовать Вас на нашем сайте. Главная его задача - выдавать права пользователям системы по запросу самого
пользователя.</h4>
<h5 class="lead mt-4">Сайт использует API ZenDesk.</h5>
</div>
</div>
{% endblock %}