35847-vm/index.php
Flatlogic Bot 8382a53e3f 1.0.1
2025-11-19 12:30:32 +00:00

39 lines
1.8 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>KittyAI - Your AI Companion</title>
<meta name="description" content="KittyAI is a fast, optimized, and customizable chatbot platform with real-time capabilities. Built with Flatlogic Generator.">
<meta name="keywords" content="ai chatbot, custom modules, real-time chat, kittyai, ai assistant, premium ai, module marketplace, flatlogic">
<meta property="og:title" content="KittyAI - Your AI Companion">
<meta property="og:description" content="A fast, optimized, and customizable chatbot platform.">
<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="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
</head>
<body>
<div class="chat-container">
<header class="chat-header">
KittyAI
</header>
<main class="chat-messages" id="chat-messages">
<!-- Messages will be appended here by JavaScript -->
</main>
<footer class="chat-input-form-container">
<form id="chat-form" class="chat-input-form">
<input type="text" id="chat-input" class="chat-input" placeholder="Type your message..." autocomplete="off">
<button type="submit" class="send-button">Send</button>
</form>
</footer>
</div>
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
</body>
</html>