mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
feat(web): Added password field visibility toggle (#7368)
* Added password field visibility toggle * improvements to password input field * fix e2e and change tabindex * add missing name=password * remove unnecessary type prop --------- Co-authored-by: Jan108 <dasJan108@gmail.com> Co-authored-by: Michel Heusschen <59014050+michelheusschen@users.noreply.github.com>
This commit is contained in:
parent
9d3ed719e0
commit
038e69fd02
7 changed files with 101 additions and 74 deletions
|
|
@ -47,6 +47,7 @@
|
|||
label="PASSWORD"
|
||||
bind:value={password}
|
||||
required={true}
|
||||
passwordAutocomplete="current-password"
|
||||
/>
|
||||
|
||||
<SettingInputField
|
||||
|
|
@ -54,6 +55,7 @@
|
|||
label="NEW PASSWORD"
|
||||
bind:value={newPassword}
|
||||
required={true}
|
||||
passwordAutocomplete="new-password"
|
||||
/>
|
||||
|
||||
<SettingInputField
|
||||
|
|
@ -61,6 +63,7 @@
|
|||
label="CONFIRM PASSWORD"
|
||||
bind:value={confirmPassword}
|
||||
required={true}
|
||||
passwordAutocomplete="new-password"
|
||||
/>
|
||||
|
||||
<div class="flex justify-end">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue