login_custom.xml 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <data>
  4. <!-- 1. Configuración de Tailwind (Inyectar en el Head) - Solo para tema M22 -->
  5. <template id="m22_tailwind_config" inherit_id="web.layout" name="M22 Tailwind Config">
  6. <xpath expr="//head" position="inside">
  7. <t t-if="request.website and request.website.sudo().theme_id and request.website.sudo().theme_id.name == 'theme_m22tc'">
  8. <!-- Google Fonts (Inter) -->
  9. <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&amp;display=swap" rel="stylesheet"/>
  10. <t t-call-assets="web.assets_frontend" t-js="false"/>
  11. <!-- Custom Styles --> Tailwind Config Script -->
  12. <script>
  13. tailwind.config = {
  14. darkMode: "class",
  15. theme: {
  16. extend: {
  17. colors: {
  18. primary: {
  19. DEFAULT: '#FF6B00',
  20. '400': '#FFA756'
  21. },
  22. secondary: '#E1467C',
  23. "background-dark": "#0A051D",
  24. },
  25. fontFamily: {
  26. sans: ["Inter", "sans-serif"],
  27. },
  28. borderRadius: {
  29. DEFAULT: "1rem",
  30. lg: "1.25rem",
  31. },
  32. },
  33. },
  34. };
  35. </script>
  36. <!-- Custom Styles -->
  37. <style>
  38. .focus-gradient-border:focus {
  39. outline: none;
  40. box-shadow: 0 0 0 2px #0A051D, 0 0 0 4px #FF6B00;
  41. }
  42. .focus-gradient-border-alt:focus {
  43. outline: none;
  44. border-color: transparent;
  45. background-image: linear-gradient(#0A051D, #0A051D), linear-gradient(to right, #FFA756, #E1467C);
  46. background-origin: border-box;
  47. background-clip: padding-box, border-box;
  48. }
  49. body.m22-login-page {
  50. background-color: #0A051D !important;
  51. background-image:
  52. radial-gradient(ellipse 80% 50% at 10% 10%, rgba(255, 107, 0, 0.15), transparent),
  53. radial-gradient(ellipse 80% 50% at 90% 90%, rgba(225, 70, 124, 0.15), transparent);
  54. min-height: 100vh;
  55. }
  56. </style>
  57. </t>
  58. </xpath>
  59. </template>
  60. <!-- 2. Personalizar el Layout del Login (Estructura General) - Solo para tema M22 -->
  61. <template id="m22_login_layout_override" inherit_id="website.login_layout" name="M22 Login Layout Override" priority="50">
  62. <!-- Configurar clase del body pasando la variable al layout - Solo para M22 -->
  63. <xpath expr="//div[hasclass('oe_website_login_container')]" position="before">
  64. <t t-if="request.website and request.website.sudo().theme_id and request.website.sudo().theme_id.name == 'theme_m22tc'">
  65. <t t-set="body_classname" t-value="'m22-login-page font-sans text-gray-300 antialiased'"/>
  66. </t>
  67. </xpath>
  68. <!-- Reemplazar el contenedor de Website - Solo para M22 -->
  69. <xpath expr="//div[hasclass('oe_website_login_container')]" position="replace">
  70. <t t-if="request.website and request.website.sudo().theme_id and request.website.sudo().theme_id.name == 'theme_m22tc'">
  71. <div class="min-h-screen w-full flex items-center justify-center p-6">
  72. <main class="w-full max-w-md">
  73. <!-- Aquí se inyectará el contenido del formulario (template 'web.login') -->
  74. <t t-out="0"/>
  75. </main>
  76. </div>
  77. </t>
  78. <t t-else="">
  79. <!-- Contenedor original para otros temas -->
  80. <div class="container oe_website_login_container">
  81. <t t-out="0"/>
  82. </div>
  83. </t>
  84. </xpath>
  85. </template>
  86. <!-- 3. Personalizar el Formulario de Login (Card y Inputs) - Solo para tema M22 -->
  87. <template id="m22_login_form_override" inherit_id="web.login" name="M22 Login Form Override" priority="100">
  88. <xpath expr="//t[@t-call='web.login_layout']" position="replace">
  89. <t t-if="request.website and request.website.sudo().theme_id and request.website.sudo().theme_id.name == 'theme_m22tc'">
  90. <t t-call="web.login_layout">
  91. <!-- Glassmorphism Card -->
  92. <div class="bg-gray-900/40 backdrop-blur-lg p-8 md:p-12 rounded-xl shadow-2xl border border-white/10">
  93. <!-- Header &amp; Logo -->
  94. <div class="text-center mb-10">
  95. <!-- Logo del Sitio Web -->
  96. <div class="flex items-center justify-center mb-6">
  97. <img t-att-src="request.website.image_url(request.website, 'logo')"
  98. alt="Logo"
  99. style="max-height: 80px; max-width: 100%; width: auto;"
  100. class="object-contain"/>
  101. </div>
  102. <h1 class="text-3xl font-bold text-white">Iniciar Sesión</h1>
  103. <p class="text-gray-400 mt-2">Accede a tu cuenta de cliente</p>
  104. </div>
  105. <!-- Login Form -->
  106. <form class="space-y-6" role="form" t-attf-action="/web/login" method="post" onsubmit="this.action = '/web/login' + location.hash">
  107. <input type="hidden" name="csrf_token" t-att-value="request.csrf_token()"/>
  108. <input type="hidden" name="redirect" t-att-value="redirect"/>
  109. <!-- Email Input -->
  110. <div>
  111. <label class="block text-sm font-medium text-gray-300 mb-2" for="login">Correo Electrónico</label>
  112. <input class="w-full bg-gray-800/50 border border-gray-700 text-white placeholder-gray-500 px-4 py-3 rounded-md focus:outline-none focus:border-orange-500 transition-all duration-300"
  113. id="login" name="login" t-att-value="login"
  114. placeholder="tu@email.com" required="required" type="text" autofocus="autofocus" autocapitalize="off"/>
  115. </div>
  116. <!-- Password Input -->
  117. <div>
  118. <div class="flex items-center justify-between mb-2">
  119. <label class="block text-sm font-medium text-gray-300" for="password">Contraseña</label>
  120. <a t-if="reset_password_enabled" class="text-sm font-medium text-orange-500 hover:text-orange-400 transition-colors" t-attf-href="/web/reset_password?{{ keep_query() }}">¿Olvidaste tu contraseña?</a>
  121. </div>
  122. <input class="w-full bg-gray-800/50 border border-gray-700 text-white placeholder-gray-500 px-4 py-3 rounded-md focus:outline-none focus:border-orange-500 transition-all duration-300"
  123. id="password" name="password"
  124. placeholder="••••••••" required="required" type="password" autocomplete="current-password" t-att-autofocus="'autofocus' if login else None"/>
  125. </div>
  126. <!-- Error Messages -->
  127. <p class="text-sm text-red-500 mt-2 text-center" t-if="error" role="alert">
  128. <t t-esc="error"/>
  129. </p>
  130. <p class="text-sm text-green-500 mt-2 text-center" t-if="message" role="status">
  131. <t t-esc="message"/>
  132. </p>
  133. <!-- Submit Button -->
  134. <div>
  135. <button style="background: linear-gradient(90deg, #FF6B00, #E1467C) !important; border: 0 !important; outline: 0 !important; box-shadow: none !important;" class="w-full text-white font-bold py-3 px-4 rounded-md hover:opacity-90 transition-all transform hover:scale-105 focus:outline-none border-0" type="submit">
  136. Iniciar Sesión
  137. </button>
  138. </div>
  139. </form>
  140. <!-- Footer (Signup) - Condicional como Odoo nativo -->
  141. <div class="text-center mt-8" t-if="signup_enabled">
  142. <p class="text-sm text-gray-400">
  143. ¿No tienes una cuenta? <a class="font-medium text-orange-500 hover:text-orange-400 transition-colors" t-attf-href="/web/signup?{{ keep_query() }}">Crear una cuenta</a>
  144. </p>
  145. </div>
  146. </div>
  147. </t>
  148. </t>
  149. <t t-else="">
  150. <!-- Formulario original para otros temas -->
  151. <t t-call="web.login_layout">
  152. <form class="oe_login_form" role="form" t-attf-action="/web/login" method="post" onsubmit="this.action = '/web/login' + location.hash">
  153. <input type="hidden" name="csrf_token" t-att-value="request.csrf_token()"/>
  154. <div class="mb-3 field-login">
  155. <label for="login">Email</label>
  156. <input type="text" placeholder="Email" name="login" t-att-value="login" id="login" required="required" autofocus="autofocus" autocapitalize="off" class="form-control"/>
  157. </div>
  158. <div class="mb-3 field-password">
  159. <label for="password">Password</label>
  160. <input type="password" placeholder="Password" name="password" id="password" required="required" autocomplete="current-password" t-att-autofocus="'autofocus' if login else None" class="form-control"/>
  161. </div>
  162. <p class="alert alert-danger" t-if="error" role="alert">
  163. <t t-esc="error"/>
  164. </p>
  165. <p class="alert alert-success" t-if="message" role="status">
  166. <t t-esc="message"/>
  167. </p>
  168. <input type="hidden" name="redirect" t-att-value="redirect"/>
  169. <div class="clearfix oe_login_buttons text-center mb-1 pt-3 d-grid">
  170. <button type="submit" class="btn btn-primary">Log in</button>
  171. <div class="o_login_auth"/>
  172. </div>
  173. </form>
  174. </t>
  175. </t>
  176. </xpath>
  177. </template>
  178. <!-- 4. Personalizar el Formulario de Registro - Solo para tema M22 -->
  179. <template id="m22_signup_form_override" inherit_id="auth_signup.signup" name="M22 Signup Form Override" priority="100">
  180. <xpath expr="//t[@t-call='web.login_layout']" position="replace">
  181. <t t-if="request.website and request.website.sudo().theme_id and request.website.sudo().theme_id.name == 'theme_m22tc'">
  182. <t t-call="web.login_layout">
  183. <!-- Glassmorphism Card -->
  184. <div class="bg-gray-900/40 backdrop-blur-lg p-8 md:p-12 rounded-xl shadow-2xl border border-white/10">
  185. <!-- Header &amp; Logo -->
  186. <div class="text-center mb-10">
  187. <div class="flex items-center justify-center mb-6">
  188. <img t-att-src="request.website.image_url(request.website, 'logo')"
  189. alt="Logo"
  190. style="max-height: 80px; max-width: 100%; width: auto;"
  191. class="object-contain"/>
  192. </div>
  193. <h1 class="text-3xl font-bold text-white">Crear Cuenta</h1>
  194. <p class="text-gray-400 mt-2">Regístrate para acceder</p>
  195. </div>
  196. <!-- Signup Form -->
  197. <form class="oe_signup_form space-y-5" role="form" method="post" t-if="not message">
  198. <input type="hidden" name="csrf_token" t-att-value="request.csrf_token()"/>
  199. <input type="hidden" name="redirect" t-att-value="redirect"/>
  200. <input type="hidden" name="token" t-att-value="token"/>
  201. <!-- Name Input (solo si no hay token) -->
  202. <div t-if="not (token and not invalid_token)">
  203. <label class="block text-sm font-medium text-gray-300 mb-2" for="name">Tu Nombre</label>
  204. <input class="w-full bg-gray-800/50 border border-gray-700 text-white placeholder-gray-500 px-4 py-3 rounded-md focus:outline-none focus:border-orange-500 transition-all duration-300"
  205. id="name" name="name" t-att-value="name"
  206. placeholder="Ej. Juan Pérez" required="required" type="text"
  207. t-att-readonly="'readonly' if (token and not invalid_token) else None"
  208. t-att-autofocus="'autofocus' if login and not (token and not invalid_token) else None"/>
  209. </div>
  210. <!-- Email Input (solo si no hay token) -->
  211. <div t-if="not (token and not invalid_token)">
  212. <label class="block text-sm font-medium text-gray-300 mb-2" for="login">Correo Electrónico</label>
  213. <input class="w-full bg-gray-800/50 border border-gray-700 text-white placeholder-gray-500 px-4 py-3 rounded-md focus:outline-none focus:border-orange-500 transition-all duration-300"
  214. id="login" name="login" t-att-value="login"
  215. placeholder="tu@email.com" required="required" type="text"
  216. autofocus="autofocus" autocapitalize="off"
  217. t-att-readonly="'readonly' if (token and not invalid_token) else None"/>
  218. </div>
  219. <div t-else="">
  220. <input type="hidden" name="login" t-att-value="login"/>
  221. </div>
  222. <!-- Password Input -->
  223. <div>
  224. <label class="block text-sm font-medium text-gray-300 mb-2" for="password">Contraseña</label>
  225. <input class="w-full bg-gray-800/50 border border-gray-700 text-white placeholder-gray-500 px-4 py-3 rounded-md focus:outline-none focus:border-orange-500 transition-all duration-300"
  226. id="password" name="password"
  227. placeholder="••••••••" required="required" type="password"
  228. t-att-autofocus="'autofocus' if (token and not invalid_token) else None"/>
  229. </div>
  230. <!-- Confirm Password Input -->
  231. <div>
  232. <label class="block text-sm font-medium text-gray-300 mb-2" for="confirm_password">Confirmar Contraseña</label>
  233. <input class="w-full bg-gray-800/50 border border-gray-700 text-white placeholder-gray-500 px-4 py-3 rounded-md focus:outline-none focus:border-orange-500 transition-all duration-300"
  234. id="confirm_password" name="confirm_password"
  235. placeholder="••••••••" required="required" type="password"/>
  236. </div>
  237. <!-- Error Messages -->
  238. <p class="text-sm text-red-500 mt-2 text-center" t-if="error" role="alert">
  239. <t t-esc="error"/>
  240. </p>
  241. <!-- Submit Button -->
  242. <div class="pt-2">
  243. <button style="background: linear-gradient(90deg, #FF6B00, #E1467C) !important; border: 0 !important; outline: 0 !important; box-shadow: none !important;" class="w-full text-white font-bold py-3 px-4 rounded-md hover:opacity-90 transition-all transform hover:scale-105 focus:outline-none border-0" type="submit">
  244. Registrarse
  245. </button>
  246. </div>
  247. </form>
  248. <!-- Footer -->
  249. <div class="text-center mt-8">
  250. <p class="text-sm text-gray-400">
  251. ¿Ya tienes una cuenta? <a class="font-medium text-orange-500 hover:text-orange-400 transition-colors" t-attf-href="/web/login?{{ keep_query() }}">Iniciar Sesión</a>
  252. </p>
  253. </div>
  254. </div>
  255. </t>
  256. </t>
  257. <t t-else="">
  258. <!-- Formulario original para otros temas -->
  259. <t t-call="web.login_layout">
  260. <form class="oe_signup_form" role="form" method="post" t-if="not message">
  261. <input type="hidden" name="csrf_token" t-att-value="request.csrf_token()"/>
  262. <t t-call="auth_signup.fields">
  263. <t t-set="only_passwords" t-value="bool(token and not invalid_token)"/>
  264. </t>
  265. <p class="alert alert-danger" t-if="error" role="alert">
  266. <t t-esc="error"/>
  267. </p>
  268. <input type="hidden" name="redirect" t-att-value="redirect"/>
  269. <input type="hidden" name="token" t-att-value="token"/>
  270. <div class="text-center oe_login_buttons d-grid pt-3">
  271. <button type="submit" class="btn btn-primary"> Sign up</button>
  272. <a t-attf-href="/web/login?{{ keep_query() }}" class="btn btn-link btn-sm" role="button">Already have an account?</a>
  273. <div class="o_login_auth"/>
  274. </div>
  275. </form>
  276. </t>
  277. </t>
  278. </xpath>
  279. </template>
  280. <!-- 5. Personalizar el Formulario de Reset Password - Solo para tema M22 -->
  281. <template id="m22_reset_password_override" inherit_id="auth_signup.reset_password" name="M22 Reset Password Override" priority="100">
  282. <xpath expr="//t[@t-call='web.login_layout']" position="replace">
  283. <t t-if="request.website and request.website.sudo().theme_id and request.website.sudo().theme_id.name == 'theme_m22tc'">
  284. <t t-call="web.login_layout">
  285. <!-- Glassmorphism Card -->
  286. <div class="bg-gray-900/40 backdrop-blur-lg p-8 md:p-12 rounded-xl shadow-2xl border border-white/10">
  287. <!-- Header &amp; Logo -->
  288. <div class="text-center mb-10">
  289. <div class="flex items-center justify-center mb-6">
  290. <img t-att-src="request.website.image_url(request.website, 'logo')"
  291. alt="Logo"
  292. style="max-height: 80px; max-width: 100%; width: auto;"
  293. class="object-contain"/>
  294. </div>
  295. <h1 class="text-3xl font-bold text-white">Restablecer Contraseña</h1>
  296. <p class="text-gray-400 mt-2" t-if="not token">Ingresa tu email para recibir instrucciones</p>
  297. <p class="text-gray-400 mt-2" t-if="token and not invalid_token">Ingresa tu nueva contraseña</p>
  298. </div>
  299. <!-- Success Message -->
  300. <div t-if="message" class="text-center">
  301. <p class="text-sm text-green-500 bg-green-500/10 border border-green-500/20 rounded-md p-4 mb-6" role="status">
  302. <t t-esc="message"/>
  303. </p>
  304. <a href="/web/login" class="font-medium text-orange-500 hover:text-orange-400 transition-colors">Volver al Login</a>
  305. </div>
  306. <!-- Reset Password Form -->
  307. <form class="oe_reset_password_form space-y-5" role="form" method="post" t-if="not message">
  308. <input type="hidden" name="csrf_token" t-att-value="request.csrf_token()"/>
  309. <input type="hidden" name="redirect" t-att-value="redirect"/>
  310. <input type="hidden" name="token" t-att-value="token"/>
  311. <!-- Mode: Request Reset (no token) -->
  312. <t t-if="not token">
  313. <div>
  314. <label class="block text-sm font-medium text-gray-300 mb-2" for="login">Correo Electrónico</label>
  315. <input class="w-full bg-gray-800/50 border border-gray-700 text-white placeholder-gray-500 px-4 py-3 rounded-md focus:outline-none focus:border-orange-500 transition-all duration-300"
  316. id="login" name="login" t-att-value="login"
  317. placeholder="tu@email.com" required="required" type="text"
  318. autofocus="autofocus" autocapitalize="off"/>
  319. </div>
  320. </t>
  321. <!-- Mode: Set New Password (with token) -->
  322. <t t-if="token and not invalid_token">
  323. <!-- Email (readonly) -->
  324. <div>
  325. <label class="block text-sm font-medium text-gray-300 mb-2" for="login">Correo Electrónico</label>
  326. <input class="w-full bg-gray-800/50 border border-gray-700 text-white placeholder-gray-500 px-4 py-3 rounded-md focus:outline-none focus:border-orange-500 transition-all duration-300 opacity-60"
  327. id="login" name="login" t-att-value="login"
  328. type="text" readonly="readonly" autocapitalize="off"/>
  329. </div>
  330. <!-- Name (readonly) -->
  331. <div>
  332. <label class="block text-sm font-medium text-gray-300 mb-2" for="name">Tu Nombre</label>
  333. <input class="w-full bg-gray-800/50 border border-gray-700 text-white placeholder-gray-500 px-4 py-3 rounded-md focus:outline-none focus:border-orange-500 transition-all duration-300 opacity-60"
  334. id="name" name="name" t-att-value="name"
  335. type="text" readonly="readonly"/>
  336. </div>
  337. <!-- New Password -->
  338. <div>
  339. <label class="block text-sm font-medium text-gray-300 mb-2" for="password">Nueva Contraseña</label>
  340. <input class="w-full bg-gray-800/50 border border-gray-700 text-white placeholder-gray-500 px-4 py-3 rounded-md focus:outline-none focus:border-orange-500 transition-all duration-300"
  341. id="password" name="password"
  342. placeholder="••••••••" required="required" type="password" autofocus="autofocus"/>
  343. </div>
  344. <!-- Confirm Password -->
  345. <div>
  346. <label class="block text-sm font-medium text-gray-300 mb-2" for="confirm_password">Confirmar Contraseña</label>
  347. <input class="w-full bg-gray-800/50 border border-gray-700 text-white placeholder-gray-500 px-4 py-3 rounded-md focus:outline-none focus:border-orange-500 transition-all duration-300"
  348. id="confirm_password" name="confirm_password"
  349. placeholder="••••••••" required="required" type="password"/>
  350. </div>
  351. </t>
  352. <!-- Invalid Token Message -->
  353. <div t-if="invalid_token" class="text-center">
  354. <p class="text-sm text-red-500 bg-red-500/10 border border-red-500/20 rounded-md p-4">
  355. El enlace ha expirado o es inválido. Por favor solicita uno nuevo.
  356. </p>
  357. </div>
  358. <!-- Error Messages -->
  359. <p class="text-sm text-red-500 mt-2 text-center" t-if="error" role="alert">
  360. <t t-esc="error"/>
  361. </p>
  362. <!-- Submit Button -->
  363. <div class="pt-2" t-if="not invalid_token">
  364. <button style="background: linear-gradient(90deg, #FF6B00, #E1467C) !important; border: 0 !important; outline: 0 !important; box-shadow: none !important;" class="w-full text-white font-bold py-3 px-4 rounded-md hover:opacity-90 transition-all transform hover:scale-105 focus:outline-none border-0" type="submit">
  365. <t t-if="not token">Enviar Instrucciones</t>
  366. <t t-if="token and not invalid_token">Cambiar Contraseña</t>
  367. </button>
  368. </div>
  369. </form>
  370. <!-- Footer -->
  371. <div class="text-center mt-8">
  372. <p class="text-sm text-gray-400">
  373. <a class="font-medium text-orange-500 hover:text-orange-400 transition-colors" t-attf-href="/web/login?{{ keep_query() }}">Volver al Login</a>
  374. </p>
  375. </div>
  376. </div>
  377. </t>
  378. </t>
  379. <t t-else="">
  380. <!-- Formulario original para otros temas -->
  381. <t t-call="web.login_layout">
  382. <div t-if="message" class="oe_login_form clearfix">
  383. <p class="alert alert-success" t-if="message" role="status">
  384. <t t-esc="message"/>
  385. </p>
  386. <a href="/web/login" class="btn btn-link btn-sm float-start" role="button">Back to Login</a>
  387. </div>
  388. <form class="oe_reset_password_form" role="form" method="post" t-if="not message">
  389. <input type="hidden" name="csrf_token" t-att-value="request.csrf_token()"/>
  390. <t t-if="token and not invalid_token">
  391. <t t-call="auth_signup.fields">
  392. <t t-set="only_passwords" t-value="1"/>
  393. </t>
  394. </t>
  395. <t t-if="not token">
  396. <div class="mb-3 field-login">
  397. <label for="login" class="col-form-label">Your Email</label>
  398. <input type="text" name="login" t-att-value="login" id="login" class="form-control"
  399. autofocus="autofocus" required="required" autocapitalize="off"/>
  400. </div>
  401. </t>
  402. <p class="alert alert-danger" t-if="error" role="alert">
  403. <t t-esc="error"/>
  404. </p>
  405. <input type="hidden" name="redirect" t-att-value="redirect"/>
  406. <input type="hidden" name="token" t-att-value="token"/>
  407. <div class="clearfix oe_login_buttons d-grid mt-3">
  408. <button type="submit" class="btn btn-primary">Reset Password</button>
  409. <div class="d-flex justify-content-between align-items-center small mt-2">
  410. <a t-if="not token" t-attf-href="/web/login?{{ keep_query() }}">Back to Login</a>
  411. <a t-if="invalid_token" href="/web/login">Back to Login</a>
  412. </div>
  413. <div class="o_login_auth"/>
  414. </div>
  415. </form>
  416. </t>
  417. </t>
  418. </xpath>
  419. </template>
  420. </data>
  421. </odoo>