You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
608 B
20 lines
608 B
{% extends "base.html" %}
|
|
|
|
{% block title %}Вход в систему{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="login-page">
|
|
<h2>ВХОД В СИСТЕМУ ДОКУМЕНТОРА</h2>
|
|
|
|
{% if user.is_authenticated %}
|
|
<p>Вы уже авторизованы. <a href="{% url 'auth_logout' %}">Выйти?</a></p>
|
|
{% else %}
|
|
{% include 'myauth/login_form.html' %}
|
|
{% endif %}
|
|
</div>
|
|
<div class='register-arrow'>
|
|
<p>Нет пароля?-</p>
|
|
<a href="#">Зарегистрируйтесь!</a>
|
|
<p>45 дней всё бесплатно!</p>
|
|
</div>
|
|
{% endblock %}
|
|
|