You've already forked snikket-web-portal
Tester feedback suggested that it looks really content-heavy, more like blogpost previews or something like that. We now move to a clear, recognizable "action button with description" style using the already prominent primary colour.
42 lines
1.4 KiB
HTML
42 lines
1.4 KiB
HTML
{% extends "app.html" %}
|
|
{% block content %}
|
|
<h1>{% trans %}Welcome!{% endtrans %}</h1>
|
|
<p>{% trans user_name=user_info.display_name %}Welcome home, {{ user_name }}.{% endtrans %}</p>
|
|
<nav class="welcome">
|
|
<ul>
|
|
<li>
|
|
{#- -#}
|
|
<div><a class="button primary" href="{{ url_for(".profile") }}">{% trans %}Settings{% endtrans %}</a></div>
|
|
{#- -#}
|
|
{# <img aria-hidden="true" src="{{ url_for("static", filename="img/illus-profile.svg") }}"> #}
|
|
{#- -#}
|
|
<p>{% trans %}Change your display name, set a profile picture and control visibility of your personal data to others.{% endtrans %}</p>
|
|
{#- -#}
|
|
</li>
|
|
<li>
|
|
{#- -#}
|
|
<div><a class="button primary" href="{{ url_for(".profile") }}">{% trans %}Change password{% endtrans %}</a></div>
|
|
{#- -#}
|
|
<p>{% trans %}If need be, you can change your password here.{% endtrans %}</p>
|
|
{#- -#}
|
|
</li>
|
|
{% if user_info.is_admin %}
|
|
<li>
|
|
{#- -#}
|
|
<div><a class="button primary" href="{{ url_for("admin.index") }}">{% trans %}Admin panel{% endtrans %}</a></div>
|
|
{#- -#}
|
|
<p>{% trans %}Manage users, invitations and circles of your Snikket service.{% endtrans %}</p>
|
|
{#- -#}
|
|
</li>
|
|
{% endif %}
|
|
<li>
|
|
{#- -#}
|
|
<div><a class="button secondary" href="{{ url_for(".logout") }}">{% trans %}Log out{% endtrans %}</a></div>
|
|
{#- -#}
|
|
<p>{% trans %}Exit the Snikket Web Portal, without logging out your other devices.{% endtrans %}</p>
|
|
{#- -#}
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
{% endblock %}
|