Dashlane / SAWF

Semantically Annotated Web Forms
https://dashlane.github.io/SAWF/
5 stars 1 forks source link

change_password form does not allow single password field #14

Open gouranga opened 5 months ago

gouranga commented 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.

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>
Shakarang commented 5 months ago

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.