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