11 lines
No EOL
376 B
HTML
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 %} |