SARBase/templates/dashboard.html

13 lines
214 B
HTML
Raw Normal View History

2023-11-01 18:46:27 +00:00
{% extends "base.html" %}
{% block title %}
Dashboard
{% endblock %}
{% block content %}
2023-10-30 14:48:00 +00:00
<h2>Welcome, {{ name }}!</h2>
<p>This is the dashboard. More features will be added soon!</p>
2023-11-01 18:46:27 +00:00
{% endblock %}