Files
snikket-web-portal/snikket_web/templates/user_home.html
2020-03-07 12:38:17 +01:00

20 lines
599 B
HTML

{% extends "app.html" %}
{% block content %}
<h1>Welcome!</h1>
<p>Welcome home, {{ user_info.display_name }}.</p>
<div class="welcome-cards">
<a class="card" href="{{ url_for('user.profile') }}">
<h2>Update profile</h2>
<p>Change display name, set avatar and configure visibility of your
personal data to others.</p>
</a>
<a class="card" href="{{ url_for('user.change_pw') }}">
<h2>Change password</h2>
</a>
<a class="card" href="{{ url_for('user.logout') }}">
<h2>Log out</h2>
<p>Exit the Snikket Web Portal, without logging out your other devices.</p>
</a>
</div>
{% endblock %}