mirror of
https://github.com/hazemKrimi/personal-website.git
synced 2026-05-01 18:00:26 +00:00
19 lines
432 B
HTML
19 lines
432 B
HTML
<form
|
|
action="{{ .Site.Params.formSpreeURL }}"
|
|
method="POST"
|
|
>
|
|
<input name="name" placeholder="Your name" required type="text" />
|
|
<input name="email" placeholder="Your email" required type="email" />
|
|
<textarea
|
|
cols="30"
|
|
name="message"
|
|
placeholder="Your message"
|
|
required
|
|
rows="10"
|
|
></textarea>
|
|
<div>
|
|
<button type="submit">Submit</button>
|
|
<div id="submission-status"></div>
|
|
</div>
|
|
</form>
|