hydra-sql/templates/altcha.html.twig
Gauthier DUPONT 633e93c129
Some checks reported warnings
Cadoles/hydra-sql/pipeline/pr-develop This commit is unstable
feat(altcha): add altcha validation layer to login
2025-04-02 16:30:45 +02:00

31 lines
900 B
Twig

{% block altcha_widget %}
<style>
.altcha label {
margin-bottom: 0;
}
.panel-body {
max-width: 400px;
}
</style>
<div>
<h3>
{% trans from 'form' %}altcha.widget.title{% endtrans %}
</h3>
<div class="panel-body">
<altcha-widget
challengejson={{challengeJson}}
name={{form.vars.full_name}}
strings="{{translations}}"
hidelogo
hidefooter
workers= {{ workers }}
delay={{ delay }}
{{ debug ? 'debug' : ''}}
{{ mockError ? 'mockerror' : ''}}
></altcha-widget>
<div class="alert alert-info">
{% trans from 'form' %}altcha.widget.info{% endtrans %}
</div>
</div>
</div>
{% endblock %}