23 lines
839 B
HTML
23 lines
839 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>MultiChat Overlay Dashboard</title>
|
|
</head>
|
|
<body>
|
|
<h1>Welcome to your Dashboard</h1>
|
|
<p>This is your personalized dashboard. You can manage your connected accounts and configure your overlay here.</p>
|
|
|
|
<h2>Your Overlay URL</h2>
|
|
<p>Use this URL as a browser source in your streaming software:</p>
|
|
<pre id="overlay-url"></pre>
|
|
|
|
<script>
|
|
// In a real application, we would fetch the user's unique overlay URL
|
|
// from an API and display it here. For now, we'll just show a placeholder.
|
|
const overlayUrlElement = document.getElementById('overlay-url');
|
|
// This would be something like `http://localhost:8000/overlay/USER_ID`
|
|
overlayUrlElement.textContent = `http://localhost:8000/overlay/YOUR_USER_ID`;
|
|
</script>
|
|
</body>
|
|
</html>
|