{# Contact page — Phase 1 version. The form is deliberately inert: no `method`, no `action`, all inputs and the submit button carry the `disabled` attribute. A muted note explains the form is coming soon; if `ADMIN_CONTACT_EMAIL` is set in the environment we render a `mailto:` link above the form so visitors still have a way to reach the farm. Phase 5 replaces this template with a working POST handler, hCaptcha, honeypot, and rate limiting. Context: - contact_email : str | None (from settings.admin_contact_email) - active_nav : "contact" #} {% extends "public/base.html" %} {% block title %}Contact — Chicken Babies R Us{% endblock %} {% block meta_description %}Get in touch with Chicken Babies R Us.{% endblock %} {% block content %}

Get in touch

We'd love to hear from you — questions about the birds, availability, or just to say hi.

{% if contact_email %}

The easiest way to reach us right now is email: {{ contact_email }}.

{% else %}

A direct email address will be posted here soon.

{% endif %}

Secure contact form coming soon.

{# action="" and no method = form cannot submit. Every input is disabled so screen readers and the keyboard both respect the "not-yet-available" state. #}
{% endblock %}