Part-DB.Part-DB-server/templates/security/2fa_form.html.twig
2019-12-29 13:35:30 +01:00

14 lines
No EOL
573 B
Twig

{% extends "security/2fa_base_form.html.twig" %}
{% block form %}
<div class="form-group row">
<label for="_auth_code" class="col-form-label col-3">{% trans %}tfa.check.code.label{% endtrans %}</label>
<div class="col-9">
<input id="_auth_code" class="form-control" type="text" autocomplete="off" name="{{ authCodeParameterName }}" autofocus />
<small id="passwordHelpBlock" class="form-text text-muted">
{% trans %}tfa.check.code.help{% endtrans %}
</small>
</div>
</div>
{% endblock %}