summaryrefslogtreecommitdiff
path: root/web/templates/partials/error-banner.html
blob: 628424f280876022947787b78d3e21fb76851e11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{{define "error-banner"}}
{{if .Errors}}
<div class="bg-red-900/50 border border-red-500/30 text-red-300 px-4 py-3 rounded-lg mb-6">
    <p class="font-medium">Errors:</p>
    <ul class="list-disc list-inside">
        {{range .Errors}}
        <li>{{.}}</li>
        {{end}}
    </ul>
</div>
{{end}}
{{end}}