diff options
| author | mhsanaei <ho3ein.sanaei@gmail.com> | 2025-07-28 15:44:00 +0300 |
|---|---|---|
| committer | mhsanaei <ho3ein.sanaei@gmail.com> | 2025-07-28 15:44:00 +0300 |
| commit | 7a57b31ff3ed9c42f7ba736c09b4baeb2060c2b5 (patch) | |
| tree | 69e22751882db4bf2e7eac2323cdbe99ff6fe4d6 | |
| parent | 6e1b94908185bece6423328ac16eb65c49146126 (diff) | |
remove password type
| -rw-r--r-- | web/html/form/reality_settings.html | 2 | ||||
| -rw-r--r-- | web/html/form/tls_settings.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/web/html/form/reality_settings.html b/web/html/form/reality_settings.html index 49c05ac0..a4f460e0 100644 --- a/web/html/form/reality_settings.html +++ b/web/html/form/reality_settings.html @@ -45,7 +45,7 @@ <a-input v-model="inbound.stream.reality.settings.publicKey"></a-input> </a-form-item> <a-form-item label='{{ i18n "pages.inbounds.privatekey" }}'> - <a-input type="password" v-model="inbound.stream.reality.privateKey"></a-input> + <a-input v-model="inbound.stream.reality.privateKey"></a-input> </a-form-item> <a-form-item label=" "> <a-button type="primary" icon="import" @click="getNewX25519Cert">Get New Cert</a-button> diff --git a/web/html/form/tls_settings.html b/web/html/form/tls_settings.html index 473a1d5a..b6367f7b 100644 --- a/web/html/form/tls_settings.html +++ b/web/html/form/tls_settings.html @@ -88,7 +88,7 @@ <a-input v-model="cert.cert"></a-input> </a-form-item> <a-form-item label='{{ i18n "pages.inbounds.privatekey" }}'> - <a-input type="password" v-model="cert.key"></a-input> + <a-input v-model="cert.key"></a-input> </a-form-item> </template> <a-form-item label='OCSP stapling'> |
