{% comment %}
Alternative login-method buttons — Passkey / Google / Apple.
Included on whichever view is the *primary* login view (the sign-in form when
a password method exists, otherwise the SMS view), so each button id appears
exactly once in the DOM. Context: login_methods (list).
{% endcomment %}
{% if 'passkey' in login_methods %}
{% endif %}
{% if 'google' in login_methods %}
{% endif %}
{% if 'apple' in login_methods %}
{% endif %}