53 lines
2.5 KiB
PHP
53 lines
2.5 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>blu-magicai</title>
|
|
<meta name="description" content="Built with Flatlogic Generator">
|
|
<meta name="keywords" content="AI chatbot, admin dashboard, machine learning, customer support, lead generation, automated chat, dialog flows, intent recognition, chatbot analytics, Built with Flatlogic Generator">
|
|
|
|
<meta property="og:title" content="blu-magicai">
|
|
<meta property="og:description" content="Built with Flatlogic Generator">
|
|
<meta property="og:image" content="<?php echo htmlspecialchars($_SERVER['PROJECT_IMAGE_URL'] ?? '', ENT_QUOTES, 'UTF-8'); ?>">
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
<meta name="twitter:image" content="<?php echo htmlspecialchars($_SERVER['PROJECT_IMAGE_URL'] ?? '', ENT_QUOTES, 'UTF-8'); ?>">
|
|
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
|
<script src="https://unpkg.com/feather-icons"></script>
|
|
</head>
|
|
<body>
|
|
<!-- Chat Container -->
|
|
<div class="chat-container" id="chat-container">
|
|
<div class="chat-header">
|
|
<span>AI Assistant</span>
|
|
</div>
|
|
<div class="chat-body" id="chat-body">
|
|
<div class="chat-greeting">
|
|
<h1>Welcome to blu-magicai</h1>
|
|
<p>Your friendly AI assistant is ready to chat.</p>
|
|
</div>
|
|
<!-- Messages will be appended here -->
|
|
</div>
|
|
<div class="chat-footer">
|
|
<div class="chat-input-container">
|
|
<input type="text" id="chat-input" class="form-control" placeholder="Ask me anything...">
|
|
<button class="btn btn-primary" id="chat-send-btn">
|
|
<i data-feather="arrow-up"></i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
|
|
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
|
|
<script>
|
|
feather.replace()
|
|
</script>
|
|
</body>
|
|
</html> |