/
streamlive
/
embedstream
Обзор
Документация
Войти
/
streamlive
/
embedstream
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
master
views/error.ejs
39 строк
1 KB
TwixoffStudio
Create: package.json, .gitkeep, parser.js, store.js, embed.ejs, error.ejs, index.ejs, .env.example, .gitignore, LICENSE, README.md, server.js
10 авг 2026, 11:06
Верифицирован
10 авг 2026, 11:06
6adfd59
Код
Авторство
О чём код?
<!DOCTYPE html> <html lang="ru"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title>Ошибка — EmbedStream</title> <style> body { margin: 0; min-height: 100vh; display: flex; align-items: center; justify-content: center; background: #0c0e12; color: #f0f2f5; font-family: Inter, system-ui, sans-serif; text-align: center; padding: 1.5rem; } h1 { font-size: 1.5rem; margin-bottom: 0.75rem; } p { color: #8b93a1; margin-bottom: 1.5rem; } a { color: #5eead4; text-decoration: none; border: 1px solid #242a35; padding: 0.6rem 1.2rem; border-radius: 8px; } a:hover { background: #242a35; } </style> </head> <body> <div> <h1><%= message || 'Что-то пошло не так' %></h1> <p>Проверьте ссылку или вернитесь на главную.</p> <a href="<%= baseUrl %>/">На главную</a> </div> </body> </html>