file_db_app/pb_hooks/views/error.html
2024-06-24 23:13:08 +02:00

24 lines
No EOL
460 B
HTML

{{define "title"}}
Page 1
{{end}}
{{define "body"}}
<style>
section {
background-color: white;
border-radius: 10px;
max-width: 512px;
padding: 5px;
text-align: left;
}
p, h2 {
margin: 10px 10px;
}
</style>
<center>
<section>
<h2>Error {{.code}}</h2>
<p>{{.msg}}</p>
</section>
</center>
{{end}}