prefs_twofactor_confirm.twig 480 B

123456789101112
  1. <div class="group">
  2. <h2>{% trans "Confirm disabling two-factor authentication" %}</h2>
  3. <div class="group-cnt">
  4. <form method="POST" action="prefs_twofactor.php">
  5. {{ Message_notice("By disabling two factor authentication you will be again able to login using password only."|trans) }}
  6. {{ Url_getHiddenInputs() }}
  7. {{ form|raw }}
  8. <input type="hidden" name="2fa_remove" value="1" />
  9. <input type="submit" value="{% trans "Disable two-factor authentication" %}" />
  10. </form>
  11. </div>
  12. </div>