Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Muhafiz AI Chat</title> | |
<link rel="stylesheet" href="css/style.css"> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | |
<meta name="description" content="Muhafiz AI - Your digital safety assistant by the Mohsin Kamil Foundation"> | |
</head> | |
<body> | |
<!-- Side Menu Overlay --> | |
<div id="menuOverlay" class="menu-overlay"> | |
<div class="menu-content"> | |
<div class="menu-header"> | |
<img src="images/menu-logo.png" alt="Muhafiz AI Logo" class="menu-logo"> | |
<button id="closeMenuBtn" class="close-menu-btn"> | |
<i class="fas fa-times"></i> | |
</button> | |
</div> | |
<nav class="menu-nav"> | |
<!-- Recent Conversations Section --> | |
<div class="recent-conversations"> | |
<h3>Recent Conversations</h3> | |
<div class="conversation-list" id="conversationList"> | |
<!-- Conversations will be added here dynamically --> | |
</div> | |
<button class="see-more-btn" id="seeMoreBtn"> | |
<i class="fas fa-chevron-down"></i> | |
<span>See More</span> | |
</button> | |
</div> | |
<!-- Divider --> | |
<div class="menu-divider"></div> | |
<!-- Navigation Links --> | |
<a href="about.html" class="menu-item"> | |
<i class="fas fa-info-circle"></i> | |
<span>About Us</span> | |
</a> | |
<a href="contact.html" class="menu-item"> | |
<i class="fas fa-envelope"></i> | |
<span>Contact Us</span> | |
</a> | |
<a href="follow.html" class="menu-item"> | |
<i class="fas fa-share-alt"></i> | |
<span>Follow Us</span> | |
</a> | |
</nav> | |
</div> | |
</div> | |
<div class="chat-container"> | |
<!-- Chat Header --> | |
<header class="chat-header"> | |
<button class="menu-btn" aria-label="Menu"><i class="fas fa-bars"></i></button> | |
<h1>Muhafiz AI</h1> | |
<div class="header-actions"> | |
<button class="theme-toggle-btn" id="themeToggleBtn" title="Toggle theme"> | |
<i class="fas fa-moon"></i> | |
</button> | |
<button class="new-chat-btn" id="new-chat-btn" title="New chat"><i class="fas fa-plus"></i></button> | |
</div> | |
</header> | |
<!-- Chat Messages --> | |
<main class="chat-messages" id="chat-messages"> | |
<div class="welcome-message"> | |
<img src="images/welcome-logo.png" alt="Muhafiz AI Logo" class="welcome-logo"> | |
<h2>Hi, I'm Muhafiz AI.</h2> | |
<p>Your digital safety assistant dedicated to combating cyber threats and providing support.</p> | |
<div class="context-info">Ask me about cyber security, online protection, or digital safety concerns.</div> | |
</div> | |
</main> | |
<!-- Chat Input --> | |
<footer class="chat-input"> | |
<div class="input-container"> | |
<input type="text" id="message-input" placeholder="Message Muhafiz AI..."> | |
<div class="input-actions"> | |
<button class="more-btn" title="More options"> | |
<i class="fas fa-paperclip"></i> | |
</button> | |
<button class="send-btn" id="send-btn" title="Send message" disabled> | |
<i class="fas fa-arrow-up"></i> | |
</button> | |
</div> | |
</div> | |
</footer> | |
</div> | |
<script src="js/script.js"></script> | |
</body> | |
</html> | |