22 lines
488 B
HTML
22 lines
488 B
HTML
{{define "contact"}}
|
|
<div class="card">
|
|
<h1>Contact</h1>
|
|
<form hx-post="/contact" hx-swap="outerHTML">
|
|
<p>Send us a message (Mock form):</p>
|
|
<div style="margin-bottom: 1rem">
|
|
<input
|
|
type="email"
|
|
placeholder="Email"
|
|
style="
|
|
width: 100%;
|
|
padding: 0.5rem;
|
|
border: 1px solid #ccc;
|
|
border-radius: 4px;
|
|
"
|
|
/>
|
|
</div>
|
|
<button type="submit" class="btn">Submit</button>
|
|
</form>
|
|
</div>
|
|
{{end}}
|