58 lines
1.7 KiB
HTML
58 lines
1.7 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="stylesheet" href="/static/css/main.css" />
|
|
<title>AKERN Assistant</title>
|
|
</head>
|
|
<body>
|
|
<div class="app-container">
|
|
<header class="chat-header">
|
|
<div class="header-content">
|
|
<img
|
|
src="https://www.akern.com/wp-content/themes/zaki_new/resources/img/icon/logo@2x.png"
|
|
alt=""
|
|
/>
|
|
</div>
|
|
</header>
|
|
|
|
<main class="chat-main">
|
|
<div id="messages" class="messages-container"></div>
|
|
</main>
|
|
|
|
<footer class="chat-footer">
|
|
<div class="input-wrapper">
|
|
<textarea
|
|
id="message"
|
|
class="message-input"
|
|
placeholder="Scrivi qui il tuo messaggio..."
|
|
rows="1"
|
|
></textarea>
|
|
<button id="button" class="send-button">
|
|
<svg
|
|
width="24"
|
|
height="24"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
d="M2.01 21L23 12 2.01 3 2 10l15 2-15 2z"
|
|
fill="currentColor"
|
|
/>
|
|
</svg>
|
|
</button>
|
|
</div>
|
|
<p class="footer-hint">
|
|
Premi Invio per inviare, Shift+Invio per una nuova riga
|
|
</p>
|
|
</footer>
|
|
</div>
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
|
|
<script src="/static/js/main.js"></script>
|
|
</body>
|
|
</html>
|