16 lines
426 B
HTML
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 %}
|