32 lines
940 B
HTML
32 lines
940 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Bookly Support</title>
|
|
<link rel="stylesheet" href="/static/style.css" />
|
|
<script src="/static/rum.js"></script>
|
|
</head>
|
|
<body>
|
|
<main class="chat">
|
|
<header class="chat__header">
|
|
<h1>Bookly Support</h1>
|
|
<p class="chat__subtitle">Order status, returns, and policy questions</p>
|
|
</header>
|
|
<div id="messages" class="chat__messages" aria-live="polite"></div>
|
|
<form id="composer" class="chat__composer" autocomplete="off">
|
|
<input
|
|
id="input"
|
|
class="chat__input"
|
|
type="text"
|
|
placeholder="Ask about an order or a return..."
|
|
maxlength="4000"
|
|
required
|
|
/>
|
|
<button id="send" class="chat__send" type="submit">Send</button>
|
|
</form>
|
|
</main>
|
|
<script src="/static/chat.js"></script>
|
|
</body>
|
|
</html>
|