mirror of
https://github.com/kevachat/webapp.git
synced 2025-01-08 22:07:53 +00:00
9 lines
243 B
Twig
9 lines
243 B
Twig
<form>
|
|
{% if username %}
|
|
@{{ username }}
|
|
|
|
|
<a href="{{ path('user_logout') }}">{{ 'logout' | trans }}</a>
|
|
{% else %}
|
|
<a href="{{ path('user_join') }}">{{ 'register' | trans }}</a>
|
|
{% endif %}
|
|
</form> |