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:
authorMHSanaei <mc.sanaei@gmail.com>2023-02-09 22:18:06 +0300
committerMHSanaei <mc.sanaei@gmail.com>2023-02-09 22:18:06 +0300
commitb73e4173a3c1e69e02ad6b4e3b43e425e57a5be9 (patch)
treed95d2f5e903d97082e11eb9f9023c165b1bde388 /web/html/xui/form/protocol/dokodemo.html
3x-ui
Diffstat (limited to 'web/html/xui/form/protocol/dokodemo.html')
-rw-r--r--web/html/xui/form/protocol/dokodemo.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/web/html/xui/form/protocol/dokodemo.html b/web/html/xui/form/protocol/dokodemo.html
new file mode 100644
index 00000000..a4dde06d
--- /dev/null
+++ b/web/html/xui/form/protocol/dokodemo.html
@@ -0,0 +1,17 @@
+{{define "form/dokodemo"}}
+<a-form layout="inline">
+ <a-form-item label='{{ i18n "pages.inbounds.targetAddress"}}'>
+ <a-input v-model.trim="inbound.settings.address"></a-input>
+ </a-form-item>
+ <a-form-item label='{{ i18n "pages.inbounds.destinationPort"}}'>
+ <a-input type="number" v-model.number="inbound.settings.port"></a-input>
+ </a-form-item>
+ <a-form-item label='{{ i18n "pages.inbounds.network"}}'>
+ <a-select v-model="inbound.settings.network" style="width: 100px;">
+ <a-select-option value="tcp,udp">tcp+udp</a-select-option>
+ <a-select-option value="tcp">tcp</a-select-option>
+ <a-select-option value="udp">udp</a-select-option>
+ </a-select>
+ </a-form-item>
+</a-form>
+{{end}} \ No newline at end of file