auth_signup/views/webclient_templates.xml
Данил Воробьев f0aafb1b7f initial commit
2024-05-03 09:44:03 +00:00

17 lines
634 B
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="login_successful" inherit_id="web.login_successful">
<xpath expr="//div[hasclass('oe_login_form')]/p" position="before">
<p class="alert alert-success" t-if="account_created" role="status">
Registration successful.
</p>
<!-- Remove parameter from URL, do not show "Account created" if page is refreshed -->
<script defer="defer" type="text/javascript">
window.history.replaceState({}, null, '/web/login_successful');
</script>
</xpath>
</template>
</odoo>