Files
WFL/templates/info.html

114 lines
2.4 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>System Info</title>
<link rel="icon" href="{{ request.url_for('static', path='smith.ico') }}?v=1">
<style>
body {
margin: 0;
padding: 40px;
background: #000;
color: #00ff88;
font-family: "Courier New", monospace;
}
h1 {
color: #00ff88;
font-size: 32px;
}
h2 {
margin-top: 40px;
color: #00ffaa;
}
.block {
margin-top: 20px;
padding: 20px;
border: 1px solid #00ff88;
background: rgba(0, 255, 100, 0.05);
}
.quote {
color: #00ffaa;
font-style: italic;
margin-bottom: 20px;
}
.code {
background: #001a0f;
padding: 10px;
border: 1px solid #00ff88;
margin-top: 10px;
}
img {
max-width: 100%;
margin-top: 15px;
border: 1px solid #00ff88;
}
</style>
</head>
<body>
<h1>[ SYSTEM INFO ]</h1>
<div class="quote">
> Добро пожаловать в систему.
</div>
<!-- БЛОК 1 -->
<div class="block">
<h2>🔴 Вход в систему</h2>
<p>
Здесь будет описание логина.
</p>
<!-- сюда вставишь скрин -->
<!-- <img src="/static/docs/login.png"> -->
</div>
<!-- БЛОК 2 -->
<div class="block">
<h2>🔵 Список матчей</h2>
<p>
Здесь будет описание матчей.
</p>
</div>
<!-- БЛОК 3 -->
<div class="block">
<h2>🟣 Матч-центр</h2>
<p>
Управление матчем.
</p>
</div>
<!-- БЛОК 4 -->
<div class="block">
<h2>🟢 Live система</h2>
<p>
Scheduler и обновления.
</p>
</div>
<!-- БЛОК 5 -->
<div class="block">
<h2>🟡 vMix</h2>
<p>
Интеграция с трансляцией.
</p>
</div>
<div class="code">
[ SYSTEM ONLINE ]<br>
[ MATCH TRACKING ENABLED ]<br>
[ VMIX CONNECTED ]
</div>
</body>
</html>