<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Atlas Panel</title>
<style>
/* Add any custom CSS styles here */
body {
font-family: Arial, sans-serif;
padding: 20px;
}
h1 {
text-align: center;
}
.container {
max-width: 800px;
margin: 0 auto;
}
.form-container {
background-color: #f9f9f9;
padding: 20px;
margin-top: 30px;
border-radius: 5px;
}
.buttons-container {
display: flex;
justify-content: center;
margin-top: 10px;
}
button {
flex: 1;
padding: 10px;
margin-right: 10px;
border: none;
border-radius: 5px;
cursor: pointer;
}
.buy-button {
background-color: #007bff;
color: #fff;
}
.sell-button {
background-color: #dc3545;
color: #fff;
}
button:hover {
opacity: 0.8;
}
.flat-atlas-checkbox {
margin-top: 10px;
}
.dropdown-container {
margin-top: 10px;
}
select {
width: 100%;
padding: 10px;
border: none;
border-radius: 5px;
margin-top: 5px;
cursor: pointer;
}
</style>
</head>
<body>
<div class="container">
<h1>Atlas Panel</h1>
<p>Get in touch with us to learn more about our products and services.</p>
<div class="form-container">
<h2>What's 15M Bias?</h2>
<div class="buttons-container">
<button class="buy-button">Buy</button>
<button class="sell-button">Sell</button>
</div>
<div class="flat-atlas-checkbox">
<input type="checkbox" id="flat-atlas-15m">
<label for="flat-atlas-15m">Flat Atlas</label>
</div>
<div class="dropdown-container">
<select>
<option value="discount">Discount</option>
<option value="premium">Premium</option>
</select>
</div>
</div>
<!-- New panel for "What's 5M Bias?" -->
<div class="form-container">
<h2>What's 5M Bias?</h2>
<div class="buttons-container">
<button class="buy-button">Buy</button>
<button class="sell-button">Sell</button>
</div>
<div class="flat-atlas-checkbox">
<input type="checkbox" id="flat-atlas-5m">
<label for="flat-atlas-5m">Flat Atlas</label>
</div>
<div class="dropdown-container">
<select>
<option value="discount">Discount</option>
<option value="premium">Premium</option>
</select>
</div>
</div>
</div>
</body>
</html>