Skip to main content

Django Signature Pad

Django model field and form widget for capturing signatures using szimek signature_pad.

By design, signatures are stored as PNG images encoded as data URLs. This means:

  • Signatures can only be displayed as images after being saved
  • Signatures cannot be loaded back into the signature pad for editing
  • To modify a signature, users must draw a new one from scratch
  • This design decision was made to ensure signature integrity and simplify storage requirements.

django_signature_pad.png

⚠️ Important Note: This package does not include the signature_pad JavaScript library. You need to install it separately following the instructions on GitHub.

📦 Common installation methods include:

  • Using npm: npm install signature_pad
  • Using a CDN: <script src="https://cdn.jsdelivr.net/npm/signature_pad@5.1.4/dist/signature_pad.umd.min.js"></script>
  • Downloading directly from GitHub releases

Security Features

The SignaturePadField includes several security features:

  • Data URL format validation
  • Base64 encoding verification
  • PNG signature verification
  • Size limitation (default: 100KB)

These safeguards help protect against malicious input and ensure data integrity.

Installation

pip install django-signature-pad

Quick Start

  1. Add "signature_pad" to your INSTALLED_APPS:
INSTALLED_APPS = [
    ...
    'signature_pad',
]
  1. Use the field in your models:
from django.db import models
from signature_pad import SignaturePadField

class Document(models.Model):
    signature = SignaturePadField(blank=True, null=True)
  1. Create a form for your model:
from django import forms
from .models import Document

class DocumentForm(forms.ModelForm):
    class Meta:
        model = Document
        fields = ['signature']  # Include other fields as needed
  1. Use the form in your template:
{{ form.media }}
<form method="post">
  {% csrf_token %} {{ form.as_p }}
  <button type="submit">Save</button>
</form>
  1. Render signature image:
<img src="{{ obj.signature }}" alt="Signature" />

Widget customization (optional):

from django import forms
from signature_pad import SignaturePadWidget
from .models import Document

class DocumentForm(forms.ModelForm):
    signature = forms.CharField(
        widget=SignaturePadWidget(
            dotSize=2.5,
            minWidth=1.0,
            maxWidth=4.0,
            backgroundColor="rgb(240, 240, 240)",
            penColor="rgb(0, 0, 255)"
        )
    )

    class Meta:
        model = Document
        fields = ["name", "signature"]

Available customization options:

dotSize: Size of the drawing dot (float)
minWidth: Minimum width of the signature line (float)
maxWidth: Maximum width of the signature line (float)
backgroundColor: Canvas background color (CSS color string)
penColor: Signature line color (CSS color string)

Content Security Policy

The widget renders no inline JavaScript and no inline CSS: its assets are served as static files and the per-widget options are passed to the browser through data- attributes. It therefore works under a strict policy such as script-src 'self' without 'unsafe-inline'.

If your policy uses a nonce instead (Django 6.0+ SECURE_CSP with CSP.NONCE), note that the <script> and <link> tags emitted by {{ form.media }} carry no nonce, so the browser blocks them. On Django 6.1+, render the media through the built-in csp_nonce_attr tag:

{% csp_nonce_attr form.media %}

This requires django.template.context_processors.csp in the context_processors option of your template engine. The signature_pad library itself is loaded by your own template or bundler, so it has to satisfy the policy as well.

Example Project

Want to see it in action? Try the example project:

# Clone the repository
git clone https://github.com/hleroy/django-signature-pad.git
cd django-signature-pad

# Setup the example project (uv installs dependencies automatically)
uv run python example_project/manage.py migrate
uv run python example_project/manage.py createsuperuser

Fill in the superuser information when prompted. Then start the development server:

uv run python example_project/manage.py runserver

Visit http://127.0.0.1:8000/ to see the demo in action. You can also access the admin interface http://127.0.0.1:8000/admin using the credentials you just created.

If you want to access the demo from your smartphone connected to the same (Wi-Fi) network as your computer, start the development server with 0.0.0.0:8000:

uv run python example_project/manage.py runserver 0.0.0.0:8000

License

This project is licensed under the MIT License - see the LICENSE file for details.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_signature_pad-0.10.0.tar.gz (67.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_signature_pad-0.10.0-py3-none-any.whl (11.9 kB view details)

Uploaded Python 3

File details

Details for the file django_signature_pad-0.10.0.tar.gz.

File metadata

  • Download URL: django_signature_pad-0.10.0.tar.gz
  • Upload date:
  • Size: 67.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for django_signature_pad-0.10.0.tar.gz
Algorithm Hash digest
SHA256 73ea2d4df8f9098f535271c9494c9f4522bd02fce472c365b621ec2965cb0e44
MD5 f02f12e1be8c5ae561fa5d3082b0a166
BLAKE2b-256 7f8f7c857001ab08c32745a3809e8acc077792f846141d0c1d43712a348ac6bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_signature_pad-0.10.0.tar.gz:

Publisher: publish.yml on hleroy/django-signature-pad

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file django_signature_pad-0.10.0-py3-none-any.whl.

File metadata

File hashes

Hashes for django_signature_pad-0.10.0-py3-none-any.whl
Algorithm Hash digest
SHA256 aa1075939f791ea53071be7e92d11e3f28853dfb17034374d6bd83f5a77edbd4
MD5 7d20ebfb7eb52dc5883f95c9523aa9e7
BLAKE2b-256 3900f973744489d69d95b4dd10e384868517d44e289cbd4bee2367fac1bdcbe3

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_signature_pad-0.10.0-py3-none-any.whl:

Publisher: publish.yml on hleroy/django-signature-pad

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.10.0 This release

2 files

0.9.1

2 files

0.9.0

2 files

0.8.0

2 files

0.7.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page