25 lines
448 B
HTML
25 lines
448 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>LAIC</title>
|
|
|
|
<link rel="stylesheet" href="/static/css/style.css">
|
|
</head>
|
|
<body>
|
|
|
|
<div id="chat-container">
|
|
|
|
<div id="messages"></div>
|
|
|
|
<div id="input-area">
|
|
<input type="text" id="user-input">
|
|
<button id="send-btn">Send</button>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script src="/static/js/chat.js"></script>
|
|
|
|
</body>
|
|
</html> |