TradingAgents/webapp/templates/index.html

35 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TradingAgents</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/static/styles.css">
<script src="https://unpkg.com/htmx.org@1.9.10"></script>
</head>
<body>
<div id="overall-progress-container">
<div id="overall-progress-bar" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100"></div>
<span id="overall-progress-text">0%</span>
</div>
<div id="main-content">
<div id="left-panel">
<h2>Configuration</h2>
<div id="config-form">
<form hx-post="/start" hx-target="#left-panel" hx-swap="innerHTML">
<label for="company_symbol">Company Symbol:</label>
<input type="text" id="company_symbol" name="company_symbol" value="AAPL" required>
<button type="submit">Start Process</button>
</form>
</div>
</div>
<div id="right-panel">
<p>Welcome! Please set your configuration and start the process.</p>
</div>
</div>
</body>
</html>