39 lines
1.6 KiB
PHP
39 lines
1.6 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Chat Page</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css">
|
|
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
|
</head>
|
|
<body>
|
|
|
|
<div class="container chat-container">
|
|
<div class="card shadow-sm">
|
|
<div class="card-header chat-header">
|
|
<h4 class="mb-0">Chat with our Bot</h4>
|
|
</div>
|
|
<div class="card-body chat-body" id="chat-body">
|
|
<div class="message bot">
|
|
<div class="bubble">
|
|
Hi, glad to see you here! How can I help you today?
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="card-footer chat-footer">
|
|
<div class="input-group">
|
|
<input type="text" class="form-control" id="chat-input" placeholder="Type your message...">
|
|
<button class="btn btn-primary" id="send-button">
|
|
Send <i class="bi bi-send"></i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
|
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
|
|
</body>
|
|
</html> |