{# # Authorization Server Member # # @package OpenEMR # @link http://www.open-emr.org # @author Jerry Padgett # @author Stephen Nielson # @copyright Copyright (c) 2020 Jerry Padgett # @copyright Copyright (c) 2023 Discover and Change, Inc. # @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3 #} {% extends "oauth2/oauth2-base.html.twig" %} {% block title %}{{ "OpenEMR Authorization"|xlt }}{% endblock %} {% block content %}

{% if mfaRequired %}{{'MFA Verification'|xlt }}{% else %}{{ "Sign In"|xlt }}{% endif %}


{% if invalid is not empty %}

{{ invalid|text }}

{% endif %} {% if not mfaRequired %} {% if enforce_signin_email %}
{% endif %}
{% endif %} {% if mfaRequired %} {% if isTOTP %}
{{'Provide TOTP code'|xlt }}
{% endif %} {% if isU2F %}
{{ 'Insert U2F Key'|xlt }}
  • {{ 'Insert your key into a USB port and click the Authenticate button below.'|xlt }}
  • {{ 'Then press the flashing button on your key within 1 minute.'|xlt }}
{% endif %} {% if enforce_signin_email %}
{% endif %}
{% endif %}
{% if mfaRequired is empty %} {% if patientRoleSupport is not empty %} {% endif %} {% endif %}
{% endblock %}