> ## Documentation Index
> Fetch the complete documentation index at: https://docs.declarativeforms.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Verify an email address

If you have not created a form before, start with [Create a form](/getting-started/create-a-form).

```yaml form.yaml theme={null}
version: 1
title: "Waitlist"
description: "A simple form that verifies the respondent's email address."

sections:
  - id: section_1
    title: "Join the waitlist"
    fields:
      - id: email
        type: email
        label: "Email address"
        placeholder: "name@example.com"
        # Sends a verification code and requires verification before continuing.
        otp: true
        validators:
          - required

    next: done
```
