You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.3 KiB
35 lines
1.3 KiB
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Stellar AI Chat</title>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<div class="app">
|
|
<header class="header">
|
|
<div style="display:flex;align-items:center;gap:12px;">
|
|
<div class="logo">🤖</div>
|
|
<div>
|
|
<h1>My company</h1>
|
|
<p class="subtitle">Dark-mode chat UI — powered by the backend AI</p>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<main class="chat" id="chat">
|
|
<div class="messages" id="messages" aria-live="polite"></div>
|
|
|
|
<form id="composer" class="composer" action="#">
|
|
<textarea id="input" placeholder="Say hello — press Enter to send (Shift+Enter for newline)" rows="2"></textarea>
|
|
<button id="send" type="submit">Send</button>
|
|
</form>
|
|
</main>
|
|
|
|
<footer class="footer">Running with backend at <code>http://127.0.0.1:5000/hello</code></footer>
|
|
</div>
|
|
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html> |