m0x.it/templates/index.html

38 lines
1 KiB
HTML
Raw Permalink Normal View History

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>m0x.it</title>
<link rel="icon" type="image/svg+xml" href="{{ url_for('static', filename='image/favicon.svg') }}">
<style>
body {
background-color: #121214;
color: #e4e4e7;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.card {
text-align: center;
background: #1a1a1e;
padding: 40px;
border-radius: 16px;
box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
h1 { color: #fff; margin-bottom: 10px; }
p { color: #a1a1aa; }
</style>
</head>
<body>
<div class="card">
<h1>m0x.it</h1>
<p>Die Webseite ist in Arbeit!</p>
</div>
</body>
</html>