PMAlpha / static /index.html
Sergidev's picture
Upload static v1
6b3d6fc verified
raw
history blame
No virus
1.08 kB
<!DOCTYPE html>
<html>
<head>
<title>Persistent Memory Bot</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link rel="stylesheet" href="style.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
</head>
<body>
<h1>Persistent Memory Bot</h1>
<div id="chat-container"></div>
<form id="chat-form">
<label class="switch">
<input type="checkbox" id="memory-toggle">
<span class="slider"></span>
</label>
<input type="text" id="user-input" name="user_input" placeholder="Enter your message, use the switch to toggle smart mode for faster responses but less memory. Cannot provide financial/legal advice.">
<button type="submit" id="send-button"><i class="fas fa-paper-plane"></i> Send</button>
</form>
<div id="loading-message" style="display: none;">Prompt received. Generating response...</div>
<script src="index.js"></script>
</body>
</html>