Azidan's picture
Create templates/index.html
d2a23e4 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lecture Summarizer</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<div class="container">
<h1>Lecture Text Summarizer</h1>
<p>Upload a file (.pdf, .docx, .txt) or paste text for a detailed summary.</p>
<textarea id="inputText" placeholder="Paste your lecture text here..."></textarea>
<div class="upload-section">
<label for="fileUpload">Or upload a file:</label>
<input type="file" id="fileUpload" accept=".pdf,.docx,.txt">
</div>
<button id="summarizeBtn">Summarize</button>
<div id="summarySection" class="hidden">
<h2>Summary:</h2>
<pre id="summaryOutput"></pre>
</div>
<div id="loading" class="hidden">Generating summary... Please wait.</div>
<div id="error" class="hidden error"></div>
</div>
<script src="/static/script.js"></script>
</body>
</html>