From 10025ffa66c011fd756af780772260d833460795 Mon Sep 17 00:00:00 2001 From: mhsanaei Date: Sun, 14 Sep 2025 01:22:42 +0200 Subject: Subscription --- web/html/subscription.html | 272 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 272 insertions(+) create mode 100644 web/html/subscription.html (limited to 'web/html') diff --git a/web/html/subscription.html b/web/html/subscription.html new file mode 100644 index 00000000..adcc97b1 --- /dev/null +++ b/web/html/subscription.html @@ -0,0 +1,272 @@ +{{ template "page/head_start" .}} +{{ template "page/head_end" .}} + +{{ template "page/body_start" .}} + + + + + + + + + + + + + + + + {{ i18n + "pages.settings.subSettings"}} + + + + + + + + + + + + {{ i18n + "pages.settings.subSettings"}} + Json + + + + + + + + + + + + + + + [[ + app.sId + ]] + + + + + [[ + app.download + ]] + [[ + app.upload + ]] + [[ app.used + ]] + [[ + app.total + ]] + [[ + app.remained ]] + + + + + + + + + + + + +
+ + +
+ [[ linkName(link, idx) + ]] +
+
+
+
+ + + + + + + + + Android + + + V2Box + V2RayNG + Sing-box + V2RayTun + NPV + Tunnel + + + + + + + + iOS + + + Shadowrocket + V2Box + Streisand + V2RayTun + NPV + Tunnel + + + + + + +
+
+
+
+
+ + + + + +{{template "page/body_scripts" .}} + + +{{template "component/aThemeSwitch" .}} + +{{ template "page/body_end" .}} \ No newline at end of file -- cgit v1.2.3 From 3ac1d7f5460b4e89d8057c27d7772bd34519269d Mon Sep 17 00:00:00 2001 From: Alireza Ahmadi Date: Sun, 14 Sep 2025 19:44:26 +0200 Subject: enhancements --- web/html/subscription.html | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'web/html') diff --git a/web/html/subscription.html b/web/html/subscription.html index adcc97b1..710bfe43 100644 --- a/web/html/subscription.html +++ b/web/html/subscription.html @@ -1,4 +1,10 @@ {{ template "page/head_start" .}} + + + + + + {{ template "page/head_end" .}} {{ template "page/body_start" .}} @@ -262,11 +268,7 @@ style="display:none">{{ range .result }}{{ . }} {{ end }} -{{template "page/body_scripts" .}} - - {{template "component/aThemeSwitch" .}} + {{ template "page/body_end" .}} \ No newline at end of file -- cgit v1.2.3 From bf9d2e6aeb47e980305e10be2a0d8545113013e6 Mon Sep 17 00:00:00 2001 From: mhsanaei Date: Sun, 14 Sep 2025 19:53:05 +0200 Subject: rule: Vless Route --- web/html/modals/xray_rule_modal.html | 26 ++++++++++++++++++++------ web/html/settings/xray/routing.html | 12 ++++++++---- web/html/xray.html | 5 +++-- 3 files changed, 31 insertions(+), 12 deletions(-) (limited to 'web/html') diff --git a/web/html/modals/xray_rule_modal.html b/web/html/modals/xray_rule_modal.html index d367600b..487bf197 100644 --- a/web/html/modals/xray_rule_modal.html +++ b/web/html/modals/xray_rule_modal.html @@ -9,7 +9,7 @@ Source IPs - + Source Port - + + + + + @@ -52,7 +62,7 @@ IP - + Domain - + User - + Port - + @@ -122,6 +132,7 @@ ip: "", port: "", sourcePort: "", + vlessRoute: "", network: "", sourceIP: "", user: "", @@ -155,6 +166,7 @@ this.rule.ip = rule.ip ? rule.ip.join(',') : []; this.rule.port = rule.port; this.rule.sourcePort = rule.sourcePort; + this.rule.vlessRoute = rule.vlessRoute; this.rule.network = rule.network; this.rule.sourceIP = rule.sourceIP ? rule.sourceIP.join(',') : []; this.rule.user = rule.user ? rule.user.join(',') : []; @@ -169,6 +181,7 @@ ip: "", port: "", sourcePort: "", + vlessRoute: "", network: "", sourceIP: "", user: "", @@ -210,6 +223,7 @@ rule.ip = value.ip.length > 0 ? value.ip.split(',') : []; rule.port = value.port; rule.sourcePort = value.sourcePort; + rule.vlessRoute = value.vlessRoute; rule.network = value.network; rule.sourceIP = value.sourceIP.length > 0 ? value.sourceIP.split(',') : []; rule.user = value.user.length > 0 ? value.user.split(',') : []; diff --git a/web/html/settings/xray/routing.html b/web/html/settings/xray/routing.html index e5b9b6c6..487f7963 100644 --- a/web/html/settings/xray/routing.html +++ b/web/html/settings/xray/routing.html @@ -67,18 +67,22 @@