application_configure.twig 489 B

1234567891011121314151617
  1. {{ get_hidden_inputs() }}
  2. <p>
  3. {% trans "Please scan following QR code into the two-factor authentication app on your device and enter authentication code it generates." %}
  4. </p>
  5. <p>
  6. {% if has_imagick %}
  7. <img src="{{ image }}">
  8. {% else %}
  9. {{ image|raw }}
  10. {% endif %}
  11. </p>
  12. <p>
  13. {% trans "Secret/key:" %} <strong>{{ secret }}</strong>
  14. </p>
  15. <p>
  16. <label>{% trans "Authentication code:" %} <input type="text" name="2fa_code" autocomplete="off"></label>
  17. </p>