Files
octopus/myproject/templates/home.html

21 lines
820 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.html' %}
{% block title %}Главная страница{% endblock %}
{% block content %}
<div class="container">
<div class="text-center">
<h1 class="display-4">Добро пожаловать!</h1>
<p class="lead">Система аутентификации с подтверждением email</p>
{% if user.is_authenticated %}
<p>Рады видеть вас снова, {{ user.name|default:user.email }}!</p>
<a href="{% url 'index' %}" class="btn btn-primary">Перейти в панель управления</a>
{% else %}
<div class="mt-4">
<a href="{% url 'accounts:login' %}" class="btn btn-primary">Войти</a>
</div>
{% endif %}
</div>
</div>
{% endblock %}