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
727 B

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