mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-17 06:45:24 +00:00
Merge pull request #15236 from headwAI-GmbH/password-login-type
fix: Use correct password autocomplete type on signup
This commit is contained in:
commit
b6e2b2e514
1 changed files with 2 additions and 2 deletions
|
|
@ -302,8 +302,8 @@
|
||||||
id="password"
|
id="password"
|
||||||
class="my-0.5 w-full text-sm outline-hidden bg-transparent"
|
class="my-0.5 w-full text-sm outline-hidden bg-transparent"
|
||||||
placeholder={$i18n.t('Enter Your Password')}
|
placeholder={$i18n.t('Enter Your Password')}
|
||||||
autocomplete="current-password"
|
autocomplete={mode === 'signup' ? 'new-password' : 'current-password'}
|
||||||
name="current-password"
|
name="password"
|
||||||
required
|
required
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue