---
title: Register
url: 'http://grav.olegs.eu/register'
markdown: 'http://grav.olegs.eu/register.md'
date: '2025-01-31'
description: 'title: A Page with an Example Form form: name: contact-form fields: name: label: Name placeholder: Enter your name autofocus: on autocomplete: on type: text validate: required: true email: label: Email placeholder: Enter your email address type: email validate: r…'
---

title: A Page with an Example Form form: name: contact-form fields: name: label: Name placeholder: Enter your name autofocus: on autocomplete: on type: text validate: required: true

```
    email:
      label: Email
      placeholder: Enter your email address
      type: email
      validate:
        required: true

buttons:
    submit:
      type: submit
      value: Submit
    reset:
      type: reset
      value: Reset

process:
    email:
      from: "{{ config.plugins.email.from }}"
      to:
        - "{{ config.plugins.email.to }}"
        - "{{ form.value.email }}"
      subject: "[Feedback] {{ form.value.name|e }}"
      body: "{% include 'forms/data.html.twig' %}"
    save:
      fileprefix: feedback-
      dateformat: Ymd-His-u
      extension: txt
      body: "{% include 'forms/data.txt.twig' %}"
    message: Thank you for your feedback!
    display: thankyou
```

---

# My Form

Regular **markdown** content goes here...

---

## Navigation

- Previous: [Home](http://grav.olegs.eu/index.md)
- Next: [Yoga recs](http://grav.olegs.eu/yoga.md)
