minauthator/lib/http_server/src/templates/pages/me/index.html

32 lines
668 B
HTML
Raw Normal View History

2024-11-02 17:37:57 +01:00
{% extends "layouts/base.html" %}
{% block body %}
<h1>Welcome {{ user.full_name or user.handle }}!</h1>
<a href="/me/details-form">Update details.</a>
<a href="/me/authorizations">Manage authorizations.</a>
2024-11-02 17:37:57 +01:00
2024-12-04 18:25:56 +01:00
{% if user.avatar_asset_id %}
<div class="my-3">
<img
2025-06-03 21:16:47 +02:00
src="/api/user-assets/{{ user.avatar_asset_id }}"
2024-12-04 18:25:56 +01:00
style="width: 150px; height: 150px; object-fit: contain">
</div>
2024-11-02 17:37:57 +01:00
{% endif %}
<ul>
<li>
My user id: {{ user.id }}
</li>
<li>
My handle: {{ user.handle }}
</li>
<li>
My full name: {{ user.full_name }}
</li>
<li>
My email: {{ user.email }}
</li>
</ul>
</p>
{% endblock %}