<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Binance Dashboard</title>
<link rel="stylesheet" href="styles.css">
<script src="index.js"></script>
</head>
<body>
<header>
<h1>Welcome to Binance Dashboard</h1>
</header>
<main>
<div class="container">
<form class="dashboard-form">
<div class="form-group">
<label>
<input type="checkbox" name="testnet">
Testnet
</label>
</div>
<div class="form-group">
<label for="entry">Entry</label>
<input type="text" id="entry" name="entry" class="form-control">
</div>
<div class="form-group">
<label for="stoploss">Stoploss</label>
<input type="text" id="stoploss" name="stoploss" class="form-control">
</div>
<div class="form-group">
<label for="riskandreward">Risk and Reward</label>
<input type="text" id="riskandreward" name="riskandreward" class="form-control">
</div>
<div class="form-group">
<label for="betsize">Bet Size</label>
<input type="text" id="betsize" name="betsize" class="form-control">
</div>
<button type="button" class="btn" onclick="handleSubmit()">Submit</button>
</form>
</div>
</main>
<footer>
<p>&copy; 2024 Binance Dashboard</p>
</footer>
</body>
</html>