Contact page

This commit is contained in:
Hazem Krimi
2023-11-07 20:11:09 +01:00
parent 420e348cad
commit 164cf73180
8 changed files with 101 additions and 6 deletions
+10
View File
@@ -0,0 +1,10 @@
{{ $styles := resources.Get "css/partials/contact-form.css" | toCSS | minify }}
<link rel="stylesheet" href="{{ $styles.Permalink }}">
<form action="{{ .Site.Params.formSpreeURL }}" method="post">
<input name="name" placeholder="Your name" type="text" />
<input name="email" placeholder="Your email" type="email" />
<textarea cols="30" name="message" placeholder="Enter your message here" rows="10"></textarea>
<button type="submit">Submit</button>
</form>