prototoolagain/app/templates/dashboard.html
Jimmy 0a4f870f67 Initial commit: Inspection reporting app
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-22 01:03:51 +01:00

11 lines
No EOL
376 B
HTML

{% extends "base.html" %}
{% block title %}Dashboard{% endblock %}
{% block content %}
<div class="max-w-4xl mx-auto">
<h1 class="text-3xl font-bold mb-4">Dashboard</h1>
<a href="{{ url_for('admin.users') }}" class="bg-green-600 text-white px-4 py-2 rounded mr-4 hover:bg-green-700">Admin Panel</a>
<!-- Content will be added here later -->
</div>
{% endblock %}