{# 2FA mid-login challenge — verify TOTP / email OTP / recovery code. Contract: ~/.claude/skills/ux-architect/components/auth-2fa.md (UX-077, 1/3) #} {% extends "site/site_base.html" %} {% from 'macros/auth_page_wrapper.html' import auth_page_card %} {% block title %}Two-Factor Authentication - {{ product_name }}{% endblock %} {% block body_class %}dz-auth-page{% endblock %} {% block body_attrs %}hx-history="false"{% endblock %} {% block body %} {# v0.62 CSS refactor: inline Tailwind → semantic .dz-auth-* family. #} {% call auth_page_card("Verify Your Identity", product_name) %}

Enter the verification code to continue.

{% if "email_otp" in methods %} {% endif %} {# Divider with centred "OR" label. CSS pseudo-element draws the line. #} {% endcall %} {% endblock %} {% block scripts_extra %} {% endblock %}