diff --git a/app.py b/app.py index cc1ada9..3624019 100644 --- a/app.py +++ b/app.py @@ -1651,4 +1651,12 @@ async def publish_vmix_command(payload: PublishVmixCommandPayload, request: Requ @app.get("/api/vmix/clients") async def list_vmix_clients(): clients = await vmix_ws_manager.list_clients() - return {"items": clients} \ No newline at end of file + return {"items": clients} + +@app.get("/info", response_class=HTMLResponse) +def info_page(request: Request): + return templates.TemplateResponse( + name="info.html", + request=request, + context={} + ) \ No newline at end of file diff --git a/templates/info.html b/templates/info.html new file mode 100644 index 0000000..cca5be7 --- /dev/null +++ b/templates/info.html @@ -0,0 +1,114 @@ + + + + + System Info + + + + + + + + +

[ SYSTEM INFO ]

+ +
+ > Добро пожаловать в систему. +
+ + +
+

🔴 Вход в систему

+

+ Здесь будет описание логина. +

+ + + +
+ + +
+

🔵 Список матчей

+

+ Здесь будет описание матчей. +

+
+ + +
+

🟣 Матч-центр

+

+ Управление матчем. +

+
+ + +
+

🟢 Live система

+

+ Scheduler и обновления. +

+
+ + +
+

🟡 vMix

+

+ Интеграция с трансляцией. +

+
+ +
+ [ SYSTEM ONLINE ]
+ [ MATCH TRACKING ENABLED ]
+ [ VMIX CONNECTED ] +
+ + + \ No newline at end of file diff --git a/vmix.zip b/vmix.zip deleted file mode 100644 index 7faa402..0000000 Binary files a/vmix.zip and /dev/null differ