28 lines
979 B
PHP
28 lines
979 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Companion - Your AI Friend</title>
|
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/css/bootstrap.min.css">
|
|
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="assets/css/custom.css">
|
|
</head>
|
|
<body>
|
|
<div class="chat-container">
|
|
<div class="chat-header">
|
|
<h3>Companion</h3>
|
|
</div>
|
|
<div class="chat-messages" id="chat-messages">
|
|
<!-- Messages will be appended here -->
|
|
</div>
|
|
<div class="chat-input">
|
|
<input type="text" id="message-input" placeholder="Type your message...">
|
|
<button id="send-button">Send</button>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="assets/js/main.js"></script>
|
|
</body>
|
|
</html>
|