Files
bitcoin_monitor/config/templates/dashboard.html
2026-01-16 22:20:18 +03:00

53 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>Bitcoin Monitor</title>
<style>
body {
font-family: Arial, sans-serif;
max-width: 800px;
margin: 0 auto;
padding: 20px;
background: #f5f5f5;
}
.container {
background: white;
padding: 30px;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
h1 {
color: #333;
}
.status {
padding: 15px;
margin: 20px 0;
background: #4CAF50;
color: white;
border-radius: 5px;
}
</style>
</head>
<body>
<div class="container">
<h1>₿ Bitcoin Monitor</h1>
<p>Welcome to your Bitcoin monitoring dashboard!</p>
<div class="status">
<h2>Status: Running</h2>
<p>This is a simple Django app for monitoring Bitcoin prices.</p>
</div>
<h3>Next Steps:</h3>
<ul>
<li>Connect to Bitcoin API</li>
<li>Display real-time prices</li>
<li>Add price charts</li>
<li>Set up alerts</li>
</ul>
<p>Check the API: <a href="/">Hello World</a></p>
</div>
</body>
</html>