10 lines
288 B
Twig
10 lines
288 B
Twig
{% extends 'auth/master.twig' %}
|
|
{% from 'auth/macros.twig' import auth_login %}
|
|
|
|
{% block content %}
|
|
{{ auth_login(
|
|
auth_username|default(''),
|
|
auth_login_error|default(private_info.message|default('')),
|
|
auth_login_error is not defined
|
|
) }}
|
|
{% endblock %}
|