{% from "components/checkbox.html" import checkbox %}
{% from "components/radios.html" import radios %}
All team members can see
templates
history of sent messages
who the other team members are
{% if service_has_email_auth %}
{% if user_has_no_mobile_number %}
{{ radios(
form.login_authentication,
disable=['sms_auth'],
option_hints={'sms_auth': 'Not available because this team member hasn’t added a phone number to their profile'|safe}
) }}
{% else %}
{{ radios(form.login_authentication) }}
{% endif %}
{% endif %}