SARBase/templates/dashboard.html
2023-11-01 20:46:27 +02:00

13 lines
214 B
HTML

{% extends "base.html" %}
{% block title %}
Dashboard
{% endblock %}
{% block content %}
<h2>Welcome, {{ name }}!</h2>
<p>This is the dashboard. More features will be added soon!</p>
{% endblock %}