35 lines
622 B
HTML
35 lines
622 B
HTML
<!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">
|
|
|
|
<title>Gear Orders Bot</title>
|
|
|
|
<style>
|
|
body {
|
|
font-family: Arial;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 18pt;
|
|
}
|
|
|
|
.grid {
|
|
display: grid;
|
|
justify-items: center;
|
|
align-content: center;
|
|
height: 80vh;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="grid">
|
|
<h1>Dashboard</h1>
|
|
<p>Successfuly logged in and the login verified</p>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|