2019-12-29 13:35:30 +01:00
|
|
|
{% extends "security/2fa_base_form.html.twig" %}
|
2019-12-23 18:45:32 +01:00
|
|
|
|
|
|
|
|
2019-12-29 13:35:30 +01:00
|
|
|
{% 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>
|
2019-12-23 18:45:32 +01:00
|
|
|
</div>
|
2019-12-29 13:35:30 +01:00
|
|
|
</div>
|
2019-12-23 18:45:32 +01:00
|
|
|
{% endblock %}
|