8 lines
319 B
HTML
8 lines
319 B
HTML
{{ define "content" }}
|
|
<h1 class="text-2xl mb-4">Dashboard</h1>
|
|
<p>Welcome to Unifi Custom Blocklist Manager.</p>
|
|
<form method="POST" action="/apply">
|
|
<input type="hidden" name="csrf_token" value="{{ .CSRFToken }}">
|
|
<button type="submit" class="bg-green-600 p-2 rounded">Apply Changes</button>
|
|
</form>
|
|
{{ end }} |