Files
CatGPT/index.html
2025-06-05 10:12:52 +08:00

44 lines
1.5 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EduCat: AI Study Buddy</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header>
<h1>EduCat: AI Study Buddy</h1>
<p>Your AI-powered study companion for polytechnic success!</p>
</header>
<main>
<section id="upload-section">
<h2>Upload Study Materials</h2>
<input type="file" id="file-upload" multiple accept=".pdf,.doc,.docx,.ppt,.pptx,.txt">
<button id="upload-btn">Upload</button>
<div id="upload-status"></div>
</section>
<section id="summary-section">
<h2>AI Summary</h2>
<div id="summary-output">Upload your notes to see a summary here.</div>
</section>
<section id="quiz-section">
<h2>Practice Quiz</h2>
<div id="quiz-output">AI-generated quizzes will appear here.</div>
</section>
<section id="reminder-section">
<h2>Study Reminders</h2>
<div id="reminder-output">Personalized reminders will show here.</div>
</section>
<section id="progress-section">
<h2>Progress Dashboard</h2>
<div id="progress-output">Track your study progress visually!</div>
</section>
</main>
<footer>
<p>EduCat &copy; 2025. All rights reserved.</p>
</footer>
<script src="js/app.js"></script>
</body>
</html>