diff options
| author | MHSanaei <ho3ein.sanaei@gmail.com> | 2023-06-09 15:34:57 +0300 |
|---|---|---|
| committer | MHSanaei <ho3ein.sanaei@gmail.com> | 2023-06-09 15:34:57 +0300 |
| commit | 7fc3d3785160faddfd8745da063265ab50ee1753 (patch) | |
| tree | 76e5c89bbe1d45cc38cfbdca207525b445ece5ae /web/html/xui/form/client.html | |
| parent | 81aa3ed10e521d5c65b43d5f336a285abc89a553 (diff) | |
random password button for SS & more
crypto.getRandomValues for uuid
change name randomText to randomLowerAndNum
Diffstat (limited to 'web/html/xui/form/client.html')
| -rw-r--r-- | web/html/xui/form/client.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/html/xui/form/client.html b/web/html/xui/form/client.html index cfac5cff..bd6b08af 100644 --- a/web/html/xui/form/client.html +++ b/web/html/xui/form/client.html @@ -18,7 +18,7 @@ </template> </a-tooltip> </span> - <a-icon @click="client.email = RandomUtil.randomText(8)" type="sync"> </a-icon> + <a-icon @click="client.email = RandomUtil.randomLowerAndNum(8)" type="sync"> </a-icon> <a-input v-model.trim="client.email" style="width: 200px;"></a-input> </a-form-item> <a-form-item label="Password" v-if="inbound.protocol === Protocols.TROJAN || inbound.protocol === Protocols.SHADOWSOCKS"> @@ -44,7 +44,7 @@ <a-icon type="question-circle" theme="filled"></a-icon> </a-tooltip> </span> - <a-icon @click="client.subId = RandomUtil.randomText(16)" type="sync"> </a-icon> + <a-icon @click="client.subId = RandomUtil.randomLowerAndNum(16)" type="sync"> </a-icon> <a-input v-model.trim="client.subId" style="width: 150px;"></a-input> </a-form-item> <a-form-item v-if="client.email && app.tgBotEnable" > |
