> ## 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.

# Capture a signature

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: "Consent form"
description: "A simple form that captures a drawn signature."

sections:
  - id: section_1
    title: "Consent"
    fields:
      - id: full_name
        type: short_text
        label: "Full name"
        validators:
          - required

      - id: signature
        type: signature
        label: "Signature"
        validators:
          - required

    next: done
```
