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:
Diffstat (limited to 'web/html/xui/client_modal.html')
-rw-r--r--web/html/xui/client_modal.html9
1 files changed, 0 insertions, 9 deletions
diff --git a/web/html/xui/client_modal.html b/web/html/xui/client_modal.html
index f7faf888..25974325 100644
--- a/web/html/xui/client_modal.html
+++ b/web/html/xui/client_modal.html
@@ -125,15 +125,6 @@
},
},
methods: {
- getNewEmail(client) {
- var chars = 'abcdefghijklmnopqrstuvwxyz1234567890';
- var string = '';
- var len = 6 + Math.floor(Math.random() * 5);
- for (var ii = 0; ii < len; ii++) {
- string += chars[Math.floor(Math.random() * chars.length)];
- }
- client.email = string;
- },
async getDBClientIps(email, event) {
const msg = await HttpUtil.post('/panel/inbound/clientIps/' + email);
if (!msg.success) {