privateuserh commited on
Commit
d34a6de
·
verified ·
1 Parent(s): e892728

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +29 -14
index.html CHANGED
@@ -13,23 +13,38 @@
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="Enter your research topic here..."></textarea>
20
- <button id="submitButton">Submit</button>
 
 
 
 
 
 
 
 
 
 
21
  </div>
22
 
23
- <div class="output-section">
24
- <h2>Results</h2>
25
- <div id="resultDisplay" class="result-container" contenteditable="true">
26
- </div>
27
- </div>
 
 
 
 
28
 
29
- <div class="history-section">
30
- <h2>Recent Research</h2>
31
- <div id="historyContainer" class="history-container">
32
- </div>
 
33
  </div>
34
  </main>
35
 
 
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" 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