privateuserh commited on
Commit
e11ca4e
·
verified ·
1 Parent(s): 3b24fc9

Update index.html

Browse files
Files changed (1) hide show
  1. 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 class="main-content">
17
- <div class="chat-column">
18
- <div class="input-section">
19
- <h2>Submit Your Research Query</h2>
20
- <textarea id="researchQuery" placeholder="Ask a question based on the available research reports..."></textarea>
21
- <button id="submitButton">Submit</button>
22
- </div>
23
- <div class="output-section">
24
- <h2>Results</h2>
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="docs-column">
34
- <div class="upload-section">
35
- <h2>Upload Report</h2>
36
- <form id="uploadForm">
37
- <input type="file" id="fileInput" accept=".txt" required>
38
- <button type="submit">Upload File</button>
39
- </form>
40
- <div id="uploadStatus"></div>
41
- </div>
42
-
43
- <div class="reports-section">
44
- <h2>Available Research Reports</h2>
45
- <div id="reportsList" class="reports-container">
46
- </div>
47
- </div>
 
 
48
  </div>
49
  </main>
50
 
@@ -52,7 +48,6 @@
52
  <p>&copy; 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>&copy; 2025 CTM Research</p>
49
  </footer>
50
  </div>
 
51
  <script src="script.js"></script>
52
  </body>
53
  </html>