Spaces:
Running
Running
Update index.html
Browse files- index.html +11 -9
index.html
CHANGED
@@ -16,7 +16,7 @@
|
|
16 |
<main>
|
17 |
<div class="input-section">
|
18 |
<h2>Submit Your Research Query</h2>
|
19 |
-
<textarea id="researchQuery" placeholder="Ask a
|
20 |
<button id="submitButton">Submit</button>
|
21 |
</div>
|
22 |
<div class="output-section">
|
@@ -29,19 +29,21 @@
|
|
29 |
<div id="reportsList" class="reports-container"></div>
|
30 |
</div>
|
31 |
|
32 |
-
<div class="history-section">
|
33 |
-
<h2>Recent Research</h2>
|
34 |
-
<div id="historyContainer" class="history-container"></div>
|
35 |
-
</div>
|
36 |
-
|
37 |
<div class="upload-section">
|
38 |
-
<h2>
|
39 |
<form id="uploadForm">
|
40 |
-
<input type="
|
41 |
-
<
|
|
|
|
|
42 |
</form>
|
43 |
<div id="uploadStatus"></div>
|
44 |
</div>
|
|
|
|
|
|
|
|
|
|
|
45 |
</main>
|
46 |
|
47 |
<footer>
|
|
|
16 |
<main>
|
17 |
<div class="input-section">
|
18 |
<h2>Submit Your Research Query</h2>
|
19 |
+
<textarea id="researchQuery" placeholder="Ask a question based on the available research reports..."></textarea>
|
20 |
<button id="submitButton">Submit</button>
|
21 |
</div>
|
22 |
<div class="output-section">
|
|
|
29 |
<div id="reportsList" class="reports-container"></div>
|
30 |
</div>
|
31 |
|
|
|
|
|
|
|
|
|
|
|
32 |
<div class="upload-section">
|
33 |
+
<h2>Add New Research Report</h2>
|
34 |
<form id="uploadForm">
|
35 |
+
<input type="text" id="reportTitle" placeholder="Report Title / Header" required>
|
36 |
+
<input type="text" id="reportDescription" placeholder="Report Subject / Description" required>
|
37 |
+
<textarea id="reportBody" placeholder="Paste the full plain text body of the report here..." required></textarea>
|
38 |
+
<button type="submit" id="uploadButton">Process and Add Report</button>
|
39 |
</form>
|
40 |
<div id="uploadStatus"></div>
|
41 |
</div>
|
42 |
+
|
43 |
+
<div class="history-section">
|
44 |
+
<h2>Recent Research</h2>
|
45 |
+
<div id="historyContainer" class="history-container"></div>
|
46 |
+
</div>
|
47 |
</main>
|
48 |
|
49 |
<footer>
|