web-bvebarcelona/themes/crab/layouts/shortcodes/netlify-form.html

15 lines
606 B
HTML
Raw Normal View History

2018-03-05 11:07:24 +01:00
{{ $action := .Get "action" | default "thank-you" -}}
{{- if ne $action "thank-you" -}}{{- $action := ($action | absLangURL) -}}{{- end -}}
<form class="form-container" netlify-honeypot="antispambot" name="{{ .Get "name" }}" action="{{ $action }}" netlify>
<input type="text" name="antispambot" class="hide" />
{{ .Inner }}
<div class="row">
<button class="row-item small-full medium-third large-quarter left button" type="reset">
Reset
</button>
<button class="row-item small-full medium-third large-quarter right button" type="submit">
Submit
</button>
</div>
</form>