tgadmin/webadmin/templates/profile.html
2024-07-25 15:19:15 +03:00

16 lines
426 B
HTML

{% extends "base.html" %}
{% block title %}Profile{% endblock %}
{% block extra_head %}
<script src="/static/js/time.js" defer></script>
{% endblock %}
{% block content %}
<div class="content-container">
<h2>Welcome, {{ user.full_name }}</h2>
<p>Username: {{ user.username }}</p>
<p>Current Time: <span id="current-time"></span></p>
<!-- Any other profile details can be added here -->
</div>
{% endblock %}