gear-orders/flask/templates/dashboard.html

36 lines
622 B
HTML
Raw Normal View History

2026-01-09 22:56:54 +00:00
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
2026-01-09 23:45:03 +00:00
<title>Gear Orders Bot</title>
2026-01-09 22:56:54 +00:00
2026-01-09 23:45:03 +00:00
<style>
body {
font-family: Arial;
}
h1 {
font-size: 18pt;
}
.grid {
display: grid;
justify-items: center;
align-content: center;
height: 80vh;
}
</style>
2026-01-09 22:56:54 +00:00
</head>
2026-01-09 23:45:03 +00:00
<body>
<div class="grid">
<h1>Dashboard</h1>
<p>Successfuly logged in and the login verified</p>
2026-01-09 22:56:54 +00:00
</div>
</body>
</html>