File size: 3,979 Bytes
5813704
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ac2650e
 
5813704
ac2650e
5813704
ac2650e
5813704
ac2650e
 
5813704
 
 
27648bc
ac2650e
 
9cc7451
ac2650e
caae1da
3d44123
 
ac2650e
 
 
3d44123
ac2650e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4ff0571
 
ac2650e
4ff0571
 
 
23cd8ae
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Tabulator Example</title>
    <link href="https://unpkg.com/tabulator-tables@6.2.1/dist/css/tabulator.min.css" rel="stylesheet">
    <script type="text/javascript" src="https://unpkg.com/tabulator-tables@6.2.1/dist/js/tabulator.min.js"></script>
    <style>
        body {
            font-family: Arial, sans-serif;
            text-align: center;
            background-color: #f0f0f0;
            margin: 0;
            padding: 0;
        }
        h1 {
            background-color: #4CAF50;
            color: white;
            padding: 20px;
            margin: 0;
            border-bottom: 2px solid #388E3C;
            font-size: 28px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        button[type="submit"] {
            color: white;
            background-color: #4CAF50;
            border: none;
            cursor: pointer;
            padding: 10px 20px;
            font-size: 16px;
            border-radius: 5px;
            margin-top: 20px;
            transition: background-color 0.3s ease;
        }
        button[type="submit"]:hover {
            background-color: #388E3C;
        }
        #mediaContainer {
            margin-top: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            max-width: 100%;
            height: auto;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            padding: 20px;
            background-color: white;
        }
        #mediaContainer img, #mediaContainer video {
            max-width: 100%;
            height: auto;
            margin-bottom: 10px;
            border-radius: 5px;
        }
        #mediaContainer p {
            color: #333;
            font-size: 18px;
            text-align: center;
            margin: 0;
            font-weight: bold;
        }
    </style>
</head>
<body>
    <h1>Контакты</h1>
    <div id="tabulator-table"></div>
    <script>
        document.addEventListener('DOMContentLoaded', function () {
            fetch('https://dmtuit-gc-api-ras.hf.space/data_gc_tab_out?api_sys=fasSd3')
                .then(response => response.json())
                .then(data => {
                    new Tabulator("#tabulator-table", {
                        data: data,
                        layout: "fitColumns",
                        columns: [
                            { title: "ID", field: "id", visible: false },
                            { title: "Name", field: "name" },
                            { title: "Phone", field: "phone" },
                            { title: "Email", field: "email" },
                            { title: "Curator", field: "curator" },
                            { title: "VK ID", field: "vk_id" },
                            { title: "Chat ID", field: "chat_id" },
                            { title: "WS Statys", field: "ws_statys" },
                            { title: "WS Stop", field: "ws_stop" },
                            { title: "Web Statys", field: "web_statys" },
                            { title: "Fin Progress", field: "fin_progress" },
                            { title: "Shop Statys Full", field: "shop_statys_full" },
                            { title: "PR1", field: "pr1" },
                            { title: "PR2", field: "pr2" },
                            { title: "PR3", field: "pr3" },
                            { title: "PR4", field: "pr4" },
                            { title: "PR5", field: "pr5" },
                            { title: "Ad URL", field: "ad_url" },
                        ]
                    });
                })
                .catch(error => console.error('Error fetching contacts:', error));
        });
    </script>
</body>
</html>