Skip to Content
Menu
This question has been flagged
3 Replies
8236 Views

I'm experiencing Odoo v8 and I will login with Domain Username, not with email. So can you give me detailed information to how change just the label? The authentication is just fine, but with label "E-mail" may be kind of some misunderstanding to the other users.

I'm not a programmer, so a detailed information could be nice.

Thank you!

Avatar
Discard
Best Answer

Go through these steps:

  1. Locate Menu User Interface/Views [Setting->Technical->User Interface->Views]

  2. Search Login

  3. Edit this template 

<?xml version="1.0"?> <t name="Login" t-name="web.login"> <t t-call="web.login_layout"> <form class="oe_login_form" role="form" t-attf-action="/web/login{{ '?debug' if debug else '' }}" method="post" onsubmit="this.action = this.action + location.hash"> <t t-call="web.database_select"/> <div class="form-group field-login"> <label for="login" class="control-label">Email/Domain</label>

<input type="text" name="login" t-att-value="login" id="login" class="form-control" required="required" autofocus="autofocus"/> </div> <div class="form-group field-password"> <label for="password" class="control-label">Password</label> <input type="password" name="password" id="password" class="form-control" required="required" t-att-autofocus="'autofocus' if login else None"/> </div> <p class="alert alert-danger" t-if="error"> <t t-esc="error"/> </p> <p class="alert alert-success" t-if="message"> <t t-esc="message"/> </p> <input type="hidden" name="redirect" t-att-value="redirect"/> <div class="clearfix oe_login_buttons"> <button type="submit" class="btn btn-primary">Log in</button> </div> </form> </t> </t>

Avatar
Discard
Best Answer

The solution proposed overwrites the core. Is there any app to do this?

Avatar
Discard
Author Best Answer

Thanks a lot Mr. Sharma, you solved my question.

Avatar
Discard
Related Posts Replies Views Activity
0
Jun 22
919
0
Jan 21
1708
3
Jan 20
5535
0
Nov 19
4046
1
Dec 24
29