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.
9 lines
378 B
9 lines
378 B
<div {{ attributes.defaults(stimulus_controller('login')) }}> |
|
{% if app.user %} |
|
<p>Hello, {{ app.user.displayName }}</p> |
|
|
|
<twig:Atoms:Button tag="a" href="/logout" data-action="live#$render">Log out</twig:Atoms:Button> |
|
{% else %} |
|
<twig:Atoms:Button {{ ...stimulus_action('login', 'loginAct') }}>Log in</twig:Atoms:Button> |
|
{% endif %} |
|
</div>
|
|
|