Initial commit of form submission struct.

This commit is contained in:
mikestefanello 2021-12-22 23:40:08 -05:00
parent b61077dac9
commit 57159c4fba
5 changed files with 126 additions and 21 deletions

View file

@ -1,11 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<html lang="en" style="height:100%;">
<head>
{{template "metatags" .}}
{{template "css" .}}
{{template "js" .}}
</head>
<body>
<body class="has-background-light" style="min-height:100%;">
<nav class="navbar is-dark">
<div class="container" hx-boost="true">
<div class="navbar-brand">
@ -28,12 +28,14 @@
<section class="section">
<div class="container">
{{- if .Title}}
<h1 class="title">{{.Title}}</h1>
{{- end}}
<div class="box">
{{- if .Title}}
<h1 class="title">{{.Title}}</h1>
{{- end}}
{{template "messages" .}}
{{template "content" .}}
{{template "messages" .}}
{{template "content" .}}
</div>
</div>
</section>
</body>