Open gouranga opened 5 months ago
I'm trying to make Dashlane fill new password field properly after email recovery and I don't want to have password confirmation field.
In this case Dashlane changes form's data-form-type to other and opens the account selector.
data-form-type
other
Doesn't work:
<form action="/change-password" data-form-type="change_password"> <label for="new-password">Your new password:</label> <input type="password" id="new-password" data-form-type="password,new"> </form>
Works:
<form action="/change-password" data-form-type="change_password"> <label for="new-password">Your new password:</label> <input type="password" id="new-password" data-form-type="password,new"> <label for="new-password-repeat">Repeat your new password:</label> <input type="password" id="new-password-repeat" data-form-type="password,confirmation"> </form>
Hello @gouranga,
Thanks for the report. We have added it to our backlog and will let you know when we have an update on this issue.
I'm trying to make Dashlane fill new password field properly after email recovery and I don't want to have password confirmation field.
In this case Dashlane changes form's
data-form-type
toother
and opens the account selector.Doesn't work:
Works: