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