getgrav / grav-plugin-login

Grav Login Plugin
http://getgrav.org
MIT License
44 stars 54 forks source link

Is it possible to see who is currently logged in? #261

Closed gambithunt closed 3 years ago

gambithunt commented 3 years ago

Hi here

Is it possible to see who is currently logged in?

Thanks.

Vivalldi commented 3 years ago

Yup! Take a look at the login-status template for an example

{% if grav.user.authenticated %}
  <div>{{ grav.user.fullname ?: grav.user.username }}</div>
{% endif %}
jubmailto commented 10 months ago

Is it possible to explain more about this ? What do I have to do with login-status.html.twig ? Thanks