webapp/templates/default/module/user.html.twig

9 lines
243 B
Twig
Raw Normal View History

2023-12-23 09:35:48 +00:00
<form>
{% if username %}
@{{ username }}
|
<a href="{{ path('user_logout') }}">{{ 'logout' | trans }}</a>
{% else %}
<a href="{{ path('user_join') }}">{{ 'register' | trans }}</a>
{% endif %}
</form>