{% extends '@mio/settings/master.twig' %} {% block settings_content %}

These are the active logins to your account, clicking the Kill button will force a logout on that session. Your current login is highlighted with a darker purple so you don't accidentally force yourself to logout.

{% for session in user_sessions %}
IP
{{ session.session_ip.string }} {% if session.session_country != 'XX' %} {{ session.session_country }} {% endif %}
Created
{{ session.created_at.diffForHumans }}
Expires
{{ session.expires_on.diffForHumans }}
{% if session.user_agent|length > 0 %}
User Agent
{{ session.user_agent }}
{% endif %}
{% endfor %}
{% endblock %}