{# Auth page wrapper macro — shared card shell for all site/auth/* templates #} {# Contract: ~/.claude/skills/ux-architect/components/auth-page.md (UX-036) #} {# #} {# Usage: #} {# {% from 'macros/auth_page_wrapper.html' import auth_page_card %} #} {# {% call auth_page_card(title, product_name) %} #} {# ... form + footer links here ... #} {# {% endcall %} #} {% macro auth_page_card(title, product_name) %}
{{ product_name }}

{{ title }}

{{ caller() }}
{% endmacro %}