File size: 1,285 Bytes
d2d0ace
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>CTM Research Agent</title>
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <div class="container">
        <header>
            <h1>CTM Research Agent</h1>
            <p>Your AI-powered assistant for in-depth research and analysis.</p>
        </header>

        <main>
            <div class="input-section">
                <h2>Submit Your Research Query</h2>
                <textarea id="researchQuery" placeholder="Enter your research topic here..."></textarea>
                <button id="submitButton">Submit</button>
            </div>

            <div class="output-section">
                <h2>Results</h2>
                <div id="resultDisplay" class="result-container" contenteditable="true">
                    </div>
            </div>

            <div class="history-section">
                <h2>Recent Research</h2>
                <div id="historyContainer" class="history-container">
                    </div>
            </div>
        </main>

        <footer>
            <p>&copy; 2025 CTM Research</p>
        </footer>
    </div>

    <script src="script.js"></script>
</body>
</html>