Brower's autofill is not working in ember.js forms
问题 It's not uncommon user needs to login. And in most browsers, there is a password manager. The problem is that for forms, that are built using javascript, browser doesn't recognize forms. And autofill feature doesn't work. Any work around? Ex: <form> {{input value=name name="firstname"}} </form> 回答1: Adding autocomplete="true" should do it. So like this: {{input value=name name="email" autocomplete="true"}} UPDATE:: I'm not sure why your form is not working, I would check all options such as