Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShishkevich D. <135337715+shishkevichd@users.noreply.github.com>2025-03-08 18:41:27 +0300
committerGitHub <noreply@github.com>2025-03-08 18:41:27 +0300
commit697cd5e6d9d8cdacb1cf36fb485667e2409eba62 (patch)
treef0fb34bc3daeb022e0bd0040128fb6e61fa153cd /web/html/login.html
parentc6d27a446355e7278fedd98334a314994bb70153 (diff)
Code refactoring (#2739)
* refactor: switching to the use of typed props * refactor: `password-input` -> `a-password-input` * fix: qr modal copy error
Diffstat (limited to 'web/html/login.html')
-rw-r--r--web/html/login.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/web/html/login.html b/web/html/login.html
index 82c9afd5..fc48b9ec 100644
--- a/web/html/login.html
+++ b/web/html/login.html
@@ -422,16 +422,16 @@
</a-input>
</a-form-item>
<a-form-item>
- <password-input autocomplete="password" name="password" icon="lock" v-model.trim="user.password"
+ <a-password-input autocomplete="password" name="password" icon="lock" v-model.trim="user.password"
placeholder='{{ i18n "password" }}'
@keydown.enter.native="login">
- </password-input>
+ </a-password-input>
</a-form-item>
<a-form-item v-if="secretEnable">
- <password-input autocomplete="secret" name="secret" icon="key" v-model.trim="user.loginSecret"
+ <a-password-input autocomplete="secret" name="secret" icon="key" v-model.trim="user.loginSecret"
placeholder='{{ i18n "secretToken" }}'
@keydown.enter.native="login">
- </password-input>
+ </a-password-input>
</a-form-item>
<a-form-item>
<a-row justify="center" class="centered">
@@ -461,7 +461,7 @@
</a-form-item>
<a-form-item>
<a-row justify="center" class="centered">
- <theme-switch-login></theme-switch-login>
+ <a-theme-switch-login></a-theme-switch-login>
</a-row>
</a-form-item>
</a-form>