{% extends "app.html" %} {% block content %}

{% trans %}Welcome!{% endtrans %}

{% trans user_name=user_info.display_name %}Welcome home, {{ user_name }}.{% endtrans %}

{% trans %}Update profile{% endtrans %}

{% trans %}Change display name, set avatar and configure visibility of your personal data to others.{% endtrans %}

{% trans %}Change password{% endtrans %}

{% if user_info.is_admin %}

{% trans %}Admin dashboard{% endtrans %}

{% trans %}Manage users and invitations of this Snikket service.{% endtrans %}

{% endif %}

{% trans %}Log out{% endtrans %}

{% trans %}Exit the Snikket Web Portal, without logging out your other devices.{% endtrans %}

{% endblock %}