Welcome to mirror list, hosted at ThFree Co, Russian Federation.

formspree.html « partials « layouts - github.com/IvanChou/hugo-theme-vec.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c940e2c45442441ed5a77b03831413da1c6d0243 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{ if .Site.Params.Email }}
<hr />
<div id="formspree" class='formspree'>
  <h2>CONTACT ME</h2>
  <form action="https://formspree.io/{{ .Site.Params.Email }}" method="POST">
    <input type="text" name="_gotcha" style="display:none" />
    <input type="hidden" name="subject" value="comment to: {{ .Title }}">
    <input type="email" name="email" placeholder="Your email" required>
    <textarea name="message" placeholder="Your message" rows=5 required></textarea>
    <button type="submit">Send</button>
  </form>
</div>
{{ end }}