34 lines
1.5 KiB
PHP
34 lines
1.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>IIVKIS - Chat Interface</title>
|
|
<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;600&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
|
</head>
|
|
<body>
|
|
|
|
<div class="chat-container">
|
|
<div class="chat-header">
|
|
<h1>IIVKIS</h1>
|
|
<p class="text-muted mb-0">Intelligent IT Vendor Knowledge Integration System</p>
|
|
</div>
|
|
<div class="chat-messages" id="chat-messages">
|
|
<!-- Messages will be appended here by JavaScript -->
|
|
</div>
|
|
<div class="chat-input">
|
|
<form id="chat-form" class="d-flex w-100">
|
|
<input type="text" id="message-input" class="form-control" placeholder="Ask a question like 'Show Cisco ASA bug vulnerabilities...'" autocomplete="off">
|
|
<button type="submit" class="btn btn-primary">Send</button>
|
|
</form>
|
|
</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>
|
|
</body>
|
|
</html> |