22 lines
782 B
HTML
22 lines
782 B
HTML
<!-- index.html -->
|
|
<!doctype html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<title>SongBeamer Auswahl</title>
|
|
<style>
|
|
body { background: #0b0d10; color: #e8edf2; font-family: system-ui; display: flex; align-items: center; justify-content: center; height: 100vh; margin: 0; }
|
|
.choices { display: flex; gap: 2rem; }
|
|
a { padding: 1rem 2rem; background: #14181d; border: 1px solid #26303a; border-radius: 0.5rem; color: #e8edf2; text-decoration: none; font-size: 1.2rem; }
|
|
a:hover { background: #18212b; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="choices">
|
|
<a href="control.php" target="_blank">Control</a>
|
|
<a href="beamer.php" target="_blank">Beamer</a>
|
|
</div>
|
|
</body>
|
|
</html>
|