You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
1004 B
28 lines
1004 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Login template-->
|
|
<template id="login_templated_ext" inherit_id="web.login"
|
|
name="Login Ext">
|
|
<xpath expr="//button[@type='submit'][1]" position="replace">
|
|
<button type="submit"
|
|
class="btn btn-primary btn-block cybro-login-btn">Log
|
|
in
|
|
</button>
|
|
</xpath>
|
|
<xpath expr="//t[@t-if='debug']/button" position="replace">
|
|
<button type="submit" name="redirect"
|
|
value="/web/become"
|
|
class="btn btn-link btn-sm btn-block cybro-super-btn">Log
|
|
in
|
|
as
|
|
superuser
|
|
</button>
|
|
</xpath>
|
|
</template>
|
|
<template inherit_id="web.webclient_bootstrap"
|
|
id="webclient_bootstrap_ext">
|
|
<xpath expr="//t[@t-set='body_classname']" position="after">
|
|
<div class="cybro-sidebar"/>
|
|
</xpath>
|
|
</template>
|
|
</odoo>
|
|
|