15 lines
482 B
HTML
15 lines
482 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Custom Chat Overlay</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', path='css/overlay-base.css') }}">
|
|
<link rel="stylesheet" href="/css/custom/{{ theme_id }}">
|
|
</head>
|
|
<body>
|
|
<div class="chat-container">
|
|
<!-- Chat messages will be injected here by the WebSocket client -->
|
|
</div>
|
|
</body>
|
|
</html> |