| 1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- // index.php - Landing page
- ?>
- <!DOCTYPE html>
- <html lang="de">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Intranet Formulare</title>
- <link rel="stylesheet" href="assets/css/style.css">
- </head>
- <body>
- <header class="site-header">
- <div class="container header-inner">
- <div class="brand">
- <div class="brand-info">
- <span class="brand-title">Intranet Formulare</span>
- <span class="brand-subtitle">Schnelle & Einfache Datenerfassung</span>
- </div>
- </div>
- <nav class="site-nav">
- <a href="create.php" class="btn btn-secondary">Formular erstellen</a>
- </nav>
- </div>
- </header>
- <main class="container">
- <div class="panel text-center" style="max-width: 600px; margin: 40px auto;">
- <h1 class="card-title">Willkommen bei Intranet Formulare</h1>
- <p style="margin-bottom: 2rem;">Erstellen Sie schnell einfache Formulare und sammeln Sie Antworten von Ihrem Team.</p>
- <a href="create.php" class="btn">Neues Formular erstellen</a>
- </div>
- </main>
- </body>
- </html>
|