mirror of
https://github.com/bringout/oca-website.git
synced 2026-04-21 09:12:06 +02:00
22 lines
708 B
XML
22 lines
708 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<!--
|
|
SPDX-FileCopyrightText: 2010-2014 Elico Corp
|
|
SPDX-FileContributor: Augustin Cisterne-Kaas <augustin.cisterne-kaas@elico-corp.com>
|
|
SPDX-FileCopyrightText: 2015 Tech-Receptives Solutions Pvt. Ltd.
|
|
SPDX-FileCopyrightText: 2019 Coop IT Easy SC
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
|
-->
|
|
<odoo>
|
|
|
|
<template id="recaptcha_widget" name="reCAPTCHA widget">
|
|
<t t-if="website.recaptcha_v2_enabled">
|
|
<div
|
|
class="g-recaptcha"
|
|
t-att-data-sitekey="website.recaptcha_v2_site_key"
|
|
/>
|
|
<script src="https://www.recaptcha.net/recaptcha/api.js" async="true" />
|
|
</t>
|
|
</template>
|
|
|
|
</odoo>
|