Welcome to mirror list, hosted at ThFree Co, Russian Federation.

trojan.html « protocol « form « xui « html « web - github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a9e2cb24a3f93c12fd7d4d15c0b97055f6dc9871 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{{define "form/trojan"}}
<a-form layout="inline" style="padding: 10px 0px;">
    <a-collapse activeKey="0" v-for="(client, index) in inbound.settings.trojans.slice(0,1)" v-if="!isEdit">
        <a-collapse-panel header='{{ i18n "pages.inbounds.client" }}'>
            {{template "form/client"}}
        </a-collapse-panel>
    </a-collapse>
    <a-collapse v-else>
        <a-collapse-panel :header="'{{ i18n "pages.client.clientCount"}} : ' + inbound.settings.trojans.length">
            <table width="100%">
                <tr class="client-table-header">
                    <th>{{ i18n "pages.inbounds.email" }}</th>
                    <th>Password</th>
                </tr>
                <tr v-for="(client, index) in inbound.settings.trojans" :class="index % 2 == 1 ? 'client-table-odd-row' : ''">
                    <td>[[ client.email ]]</td>
                    <td>[[ client.password ]]</td>
                </tr>
            </table>
        </a-collapse-panel>
    </a-collapse>
</a-form>
<template v-if="inbound.isTcp">
    <a-form layout="inline">
        <a-form-item label="Fallbacks">
            <a-row>
                <a-button type="primary" size="small" @click="inbound.settings.addFallback()">
                    +
                </a-button>
            </a-row>
        </a-form-item>
    </a-form>

    <!-- trojan fallbacks -->
    <a-form v-for="(fallback, index) in inbound.settings.fallbacks" layout="inline">
        <a-divider style="margin:0;">
            fallback[[ index + 1 ]]
            <a-icon type="delete" @click="() => inbound.settings.delFallback(index)"
                    style="color: rgb(255, 77, 79);cursor: pointer;"/>
        </a-divider>
        <table width="100%">
            <tr>
                <td style="width: 20%;">Name</td>
                <td>
                    <a-form-item>
                        <a-input v-model="fallback.name" style="width: 250px"></a-input>
                    </a-form-item>            
                </td>
            </tr>
            <tr>
                <td>Alpn</td>
                <td>
                    <a-form-item>
                        <a-input v-model="fallback.alpn" style="width: 250px"></a-input>
                    </a-form-item>
                </td>
            </tr>
            <tr>
                <td>Path</td>
                <td>
                    <a-form-item>
                        <a-input v-model="fallback.path" style="width: 250px"></a-input>
                    </a-form-item>
                </td>
            </tr>
            <tr>
                <td>Dest</td>
                <td>
                    <a-form-item>
                        <a-input v-model="fallback.dest" style="width: 250px"></a-input>
                    </a-form-item>
                </td>
            </tr>
            <tr>
                <td>xVer</td>
                <td>
                    <a-form-item>
                        <a-input-number v-model="fallback.xver" :min="0" :max="2"></a-input-number>
                    </a-form-item>
                </td>
            </tr>
    </table>
    </a-form>
    <a-divider style="margin:0;"></a-divider>
</template>
{{end}}