Spaces:
Running
Running
Update index.html
Browse files- index.html +26 -31
index.html
CHANGED
@@ -13,38 +13,34 @@
|
|
13 |
<p>Your AI-powered assistant for in-depth research and analysis.</p>
|
14 |
</header>
|
15 |
|
16 |
-
<main
|
17 |
-
<div class="
|
18 |
-
<
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
<
|
24 |
-
|
25 |
-
<div id="resultDisplay" class="result-container"></div>
|
26 |
-
</div>
|
27 |
-
<div class="history-section">
|
28 |
-
<h2>Recent Research</h2>
|
29 |
-
<div id="historyContainer" class="history-container"></div>
|
30 |
-
</div>
|
31 |
</div>
|
32 |
|
33 |
-
<div class="
|
34 |
-
<
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
|
|
|
|
48 |
</div>
|
49 |
</main>
|
50 |
|
@@ -52,7 +48,6 @@
|
|
52 |
<p>© 2025 CTM Research</p>
|
53 |
</footer>
|
54 |
</div>
|
55 |
-
|
56 |
<script src="script.js"></script>
|
57 |
</body>
|
58 |
</html>
|
|
|
13 |
<p>Your AI-powered assistant for in-depth research and analysis.</p>
|
14 |
</header>
|
15 |
|
16 |
+
<main>
|
17 |
+
<div class="input-section">
|
18 |
+
<h2>Submit Your Research Query</h2>
|
19 |
+
<textarea id="researchQuery" placeholder="Ask a general research question..."></textarea>
|
20 |
+
<button id="submitButton">Submit</button>
|
21 |
+
</div>
|
22 |
+
<div class="output-section">
|
23 |
+
<h2>Results</h2>
|
24 |
+
<div id="resultDisplay" class="result-container"></div>
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
</div>
|
26 |
|
27 |
+
<div class="reports-section">
|
28 |
+
<h2>Available Research Reports</h2>
|
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>Upload a Report to Storage</h2>
|
39 |
+
<form id="uploadForm">
|
40 |
+
<input type="file" id="fileInput" accept=".txt" required>
|
41 |
+
<button type="submit">Upload File</button>
|
42 |
+
</form>
|
43 |
+
<div id="uploadStatus"></div>
|
44 |
</div>
|
45 |
</main>
|
46 |
|
|
|
48 |
<p>© 2025 CTM Research</p>
|
49 |
</footer>
|
50 |
</div>
|
|
|
51 |
<script src="script.js"></script>
|
52 |
</body>
|
53 |
</html>
|