{% extends "base.html" %} {% load static %} {% block title %}Patient Registration - {{ block.super }}{% endblock %} {% block content %}

Patient Registration

{% csrf_token %}
Personal Information
Contact Information
Emergency Contact
Insurance Information
{% if consent_templates %}
Consent Forms
{% for template in consent_templates %}
{% if template.description %}
{{ template.description }}
{% endif %}
{% endfor %}
{% endif %}
{% endblock %} {% block js %} {% endblock %}