42 lines
1.6 KiB
PHP
42 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 text-center mt-5">
|
|
<h1>Welcome to our Chat Page</h1>
|
|
<p class="lead">Click the button below to start a conversation with our bot.</p>
|
|
</div>
|
|
|
|
<div id="chat-widget-button" class="chat-widget-button">
|
|
<i class="bi bi-chat-dots-fill fs-3"></i>
|
|
</div>
|
|
|
|
<div id="chat-widget" class="chat-widget">
|
|
<div class="chat-header">
|
|
<h5 class="mb-0">Chat with us</h5>
|
|
<button id="chat-close-button" class="btn btn-sm btn-link text-white position-absolute top-0 end-0 mt-2 me-2">
|
|
<i class="bi bi-x-lg"></i>
|
|
</button>
|
|
</div>
|
|
<div id="chat-body" class="chat-body">
|
|
<div class="chat-message bot-message">Hello! How can I help you?</div>
|
|
</div>
|
|
<div class="chat-footer">
|
|
<form id="chat-form" class="d-flex">
|
|
<input type="text" id="chat-input" class="form-control" placeholder="Type a message...">
|
|
<button type="submit" class="btn btn-primary ms-2">Send</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
|
|
</body>
|
|
</html> |