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.

18 lines
706 B

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <template id="auth_supplier.fields"
  4. inherit_id="auth_signup.fields"
  5. name="Auth Signup/ResetPassword form fields">
  6. <xpath expr="//div[@class='form-group field-login']" position="before">
  7. <div class="form-group field-type">
  8. <label for="account_type" class="control-label">Account Type</label>
  9. <select class="form-control" name="account_type">
  10. <option value="customer" selected="selected">Customer</option>
  11. <option value="supplier">Supplier</option>
  12. </select>
  13. </div>
  14. </xpath>
  15. </template>
  16. </odoo>