{% extends 'email_layout.html' %} {% block title %} {% if user.mfa %} {% trans %}Two-Factor Authentication turned on{% endtrans %} {% else %} {% trans %}Two-Factor Authentication turned off{% endtrans %} {% endif %} {% endblock title %} {% block body %}

{% trans username=(user.fullname or user.username) %}Hey {{ username }},{% endtrans %}

{% if user.mfa %} {% trans %}Your {{ header_name }} Account is now protected with Two-Factor Authentication. When you sign in on a new or untrusted device, you'll need your second factor to verify your identity.{% endtrans %} {% else %} {% trans %}Your {{ header_name }} account is no longer protected with Two-Factor Authentication. You don't need your second factor to sign in.{% endtrans %} {% endif %}

{% endblock body %}