diff options
| author | Hamidreza Ghavami <hamid.r.gh.1998@gmail.com> | 2023-05-08 17:54:44 +0300 |
|---|---|---|
| committer | Hamidreza Ghavami <hamid.r.gh.1998@gmail.com> | 2023-05-08 17:54:44 +0300 |
| commit | fc0882805d9d67aa04ba80d52214e211bb041652 (patch) | |
| tree | 02f3135f064d6fcc3a217df5ee0c1d1d5e897ce7 /web/html/xui/settings.html | |
| parent | f553922d5363fe63dd485f8cbaa7f56178a640cc (diff) | |
update UI to use password-input component
Diffstat (limited to 'web/html/xui/settings.html')
| -rw-r--r-- | web/html/xui/settings.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/html/xui/settings.html b/web/html/xui/settings.html index 8463ee80..44b15771 100644 --- a/web/html/xui/settings.html +++ b/web/html/xui/settings.html @@ -82,13 +82,13 @@ <a-input v-model="user.oldUsername" style="max-width: 300px"></a-input> </a-form-item> <a-form-item label='{{ i18n "pages.settings.currentPassword"}}'> - <a-input type="password" v-model="user.oldPassword" style="max-width: 300px"></a-input> + <password-input v-model="user.oldPassword" style="max-width: 300px"></password-input> </a-form-item> <a-form-item label='{{ i18n "pages.settings.newUsername"}}'> <a-input v-model="user.newUsername" style="max-width: 300px"></a-input> </a-form-item> <a-form-item label='{{ i18n "pages.settings.newPassword"}}'> - <a-input type="password" v-model="user.newPassword" style="max-width: 300px"></a-input> + <password-input v-model="user.newPassword" style="max-width: 300px"></password-input> </a-form-item> <a-form-item> <a-button type="primary" @click="updateUser">{{ i18n "confirm" }}</a-button> |
