Eric Bower
·
2026-03-05
auto_form.page.tmpl
1{{define "title"}}Form Submitted{{end}}
2
3{{define "meta"}}
4{{end}}
5
6{{define "attrs"}}class="container" style="height: 100vh;"{{end}}
7
8{{define "body"}}
9<div class="container flex justify-center">
10 <div style="max-width: 450px;" class="mt-4 border py-4 px-4 flex flex-col gap">
11 <h1 class="text-lg">Form Submitted</h1>
12
13 {{if .Error}}
14 <div style="color: tomato;">{{.Error}}</div>
15 {{else}}
16 <div>Form submitted successfully!</div>
17 {{end}}
18 </div>
19</div>
20{{end}}