mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-09-06 22:55:38 +08:00
feat: support autocomplete for login form fields to enhance password manager compatibility (#9794)
This commit is contained in:
parent
9c292bebf0
commit
67ffb5e938
1 changed files with 4 additions and 0 deletions
|
@ -77,6 +77,8 @@
|
|||
:placeholder="$t('commons.login.username')"
|
||||
class="w-full"
|
||||
size="large"
|
||||
name="username"
|
||||
autocomplete="username"
|
||||
></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item prop="password" class="w-full">
|
||||
|
@ -87,6 +89,8 @@
|
|||
class="w-full"
|
||||
size="large"
|
||||
:placeholder="$t('commons.login.password')"
|
||||
name="password"
|
||||
autocomplete="current-password"
|
||||
></el-input>
|
||||
</el-form-item>
|
||||
<el-row :gutter="10">
|
||||
|
|
Loading…
Add table
Reference in a new issue