shcool/yuthon_login_theme/views/login_templates.xml
2026-07-31 20:38:35 +08:00

20 lines
934 B
XML

<odoo>
<template id="yuthon_login_branding" name="校园登录品牌标题" inherit_id="web.login">
<!-- 在表单最顶部插入品牌标题 -->
<xpath expr="//form[@role='form']/input[@name='csrf_token']" position="before">
<div class="edu-login-head">
<div class="edu-login-brand">校园管理系统</div>
<h1 class="edu-login-title">欢迎登录</h1>
<p class="edu-login-sub">教职工 · 课程 · 成绩 · 出勤,一站式管理平台</p>
</div>
</xpath>
</template>
<template id="yuthon_login_background" name="校园登录背景层" inherit_id="web.login">
<!-- 在登录表单之前插入全屏背景层,绕过 body 背景被第三方主题覆盖的问题 -->
<xpath expr="//form[@role='form']" position="before">
<div class="edu-login-bg"/>
</xpath>
</template>
</odoo>