Part-DB.Part-DB-server/templates/security/2fa_form.html.twig

14 lines
573 B
Twig
Raw Permalink Normal View History

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