Files
Passkeys/Resource/template/admin/shop_edit_tfa.twig
2025-10-06 21:45:33 +09:00

31 lines
992 B
Twig

{#
This file is part of EC-CUBE
Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
http://www.ec-cube.co.jp/
For the full copyright and license information, please view the LICENSE
file that was distributed with this source code.
#}
<script type="text/javascript">
$(function () {
$('#passkeys_use_div > div.col-3 > div').tooltip();
$("#ex-shop-customer").last().append($("#passkeys_use_div").detach());
});
</script>
<div class="row" id="passkeys_use_div">
<div class="col-3">
<div class="d-inline-block" data-bs-toggle="tooltip" data-bs-placement="top"
title="{{ 'admin.setting.shop.shop.customer_passkey_auth_tooltip'|trans }}">
<span>{{ 'admin.setting.shop.shop.customer_passkey_auth'|trans }}</span>
<i class="fa fa-question-circle fa-lg ms-1"></i>
</div>
</div>
<div class="col mb-2">
{{ form_widget(form.passkeys_use) }}
{{ form_errors(form.passkeys_use) }}
</div>
</div>