AJAYKASU commited on
Commit
ab23a0d
·
verified ·
1 Parent(s): 1af5e94

UI: Restore original aesthetic with new features

Browse files
Files changed (1) hide show
  1. templates/index.html +26 -14
templates/index.html CHANGED
@@ -9,6 +9,24 @@
9
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
10
  <link rel="stylesheet" href="/static/style.css">
11
  <script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  </head>
13
 
14
  <body>
@@ -24,16 +42,14 @@
24
 
25
  <div class="form-group">
26
  <label>RESEARCH QUERY</label>
27
- <textarea id="query" rows="3"
28
  placeholder="e.g. 'Analyze SaaS IPO comparables'">Analyze SaaS sector for IPO pricing: comparables, investors, signals</textarea>
29
  </div>
30
 
31
  <div class="form-group">
32
  <label>DEAL CONTEXT (OPTIONAL)</label>
33
- <input type="number" id="last-private" placeholder="Last Pvt Price ($)"
34
- style="margin-bottom:10px; width: 100%; padding: 8px; background: #222; border: 1px solid #444; color: white;">
35
- <select id="period"
36
- style="width: 100%; padding: 8px; background: #222; border: 1px solid #444; color: white;">
37
  <option value="6mo">Last 6 Months</option>
38
  <option value="1y">Last 1 Year</option>
39
  </select>
@@ -61,15 +77,11 @@
61
  <!-- MAIN DASHBOARD -->
62
  <div id="dashboard" style="display:none; grid-template-columns: 1fr; gap:20px;">
63
 
64
- <!-- EXECUTIVE COMMENTARY (MD BRIEFING NOTE) -->
65
- <div id="exec-commentary-box" class="glass-panel"
66
- style="border-left: 4px solid var(--primary-gold); padding: 20px;">
67
- <h3 style="margin:0 0 10px 0; color:var(--primary-gold); font-family:'Georgia', serif;">
68
- <i class="fas fa-file-signature"></i> MD Executive Briefing
69
- </h3>
70
- <div id="exec-summary-content"
71
- style="font-family:'Georgia', serif; font-size:1.05rem; line-height:1.5; color:#e0e0e0;">
72
- <!-- DYNAMIC CONTENT -->
73
  </div>
74
  </div>
75
 
 
9
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
10
  <link rel="stylesheet" href="/static/style.css">
11
  <script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
12
+ <style>
13
+ /* Ensure new inputs match the theme */
14
+ .input-dark {
15
+ width: 100%;
16
+ padding: 10px;
17
+ background: rgba(255, 255, 255, 0.05);
18
+ border: 1px solid rgba(255, 255, 255, 0.1);
19
+ border-radius: 4px;
20
+ color: #fff;
21
+ font-family: 'Inter', sans-serif;
22
+ margin-bottom: 10px;
23
+ }
24
+
25
+ .input-dark:focus {
26
+ outline: none;
27
+ border-color: var(--primary-gold);
28
+ }
29
+ </style>
30
  </head>
31
 
32
  <body>
 
42
 
43
  <div class="form-group">
44
  <label>RESEARCH QUERY</label>
45
+ <textarea id="query" rows="4"
46
  placeholder="e.g. 'Analyze SaaS IPO comparables'">Analyze SaaS sector for IPO pricing: comparables, investors, signals</textarea>
47
  </div>
48
 
49
  <div class="form-group">
50
  <label>DEAL CONTEXT (OPTIONAL)</label>
51
+ <input type="number" id="last-private" class="input-dark" placeholder="Last Pvt Price ($)">
52
+ <select id="period" class="input-dark">
 
 
53
  <option value="6mo">Last 6 Months</option>
54
  <option value="1y">Last 1 Year</option>
55
  </select>
 
77
  <!-- MAIN DASHBOARD -->
78
  <div id="dashboard" style="display:none; grid-template-columns: 1fr; gap:20px;">
79
 
80
+ <!-- EXECUTIVE SUMMARY (Restored Original Style) -->
81
+ <div class="glass-panel" style="padding:20px;">
82
+ <h3 style="margin-top:0; color:var(--primary-gold);">Executive Summary</h3>
83
+ <div id="exec-summary-content" style="line-height:1.6; color:#ccc;">
84
+ <!-- Dynamic Content will be injected here by script.js -->
 
 
 
 
85
  </div>
86
  </div>
87