tgadmin/webadmin/templates/profile.html

16 lines
426 B
HTML
Raw Normal View History

2024-07-25 12:19:15 +00:00
{% 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 %}