Skip to Content
Menu
This question has been flagged
2 Replies
4375 Views

Hi,

How can i add a new button near login button of Odoo login screen in Odoo 13.

Regards

Avatar
Discard
Best Answer

Hi,

You can add new items on the login screen of odoo by inheriting the template web.login.For example you can check the code below.

<template id="custom_login" name="Custom login" inherit_id="web.login">
<xpath expr="//p[hasclass('alert-danger')]" position="after">
// your code ......
<div class="justify-content-between mt-2 d-flex small">
<a>// button name.....</a>
</div>
</xpath>
</template>
Avatar
Discard
Best Answer

You can use these apps (search apps in odoo apps by names provided below) to change the whole login page style.

Moreover, these apps provide the ability to define your own favicon and logo as you wish.

Apps Name:

Minimalist Login Form

Creative Login Form

Advanced Login Form


Avatar
Discard