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.

20 lines
720 B

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- © 2016 Jairo Llopis <jairo.llopis@tecnativa.com>
  3. License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
  4. <odoo>
  5. <template id="signup_fields" inherit_id="auth_signup.fields">
  6. <xpath expr="//div[@class='form-group field-password']"
  7. position="attributes">
  8. <attribute name="t-if">only_passwords</attribute>
  9. </xpath>
  10. <xpath expr="//div[@class='form-group field-confirm_password']"
  11. position="attributes">
  12. <attribute name="t-if">only_passwords</attribute>
  13. </xpath>
  14. <xpath expr="//input[@name='login']" position="attributes">
  15. <attribute name="type">email</attribute>
  16. </xpath>
  17. </template>
  18. </odoo>