Files
chatapp/backend/templates/chatpreview.html.tera
T
2025-10-11 01:52:21 +01:00

17 lines
514 B
Plaintext

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Concept Page</title>
<link rel="stylesheet" href="static/css/index.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/styles/github.min.css">
<script type="module" src="/static/js/chat.js"></script>
<script>
const user_id = {{ user_id }};
</script>
</head>
<body>
<!-- content goes here -->
</body>
</html>