index.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. // index.php - Landing page
  3. ?>
  4. <!DOCTYPE html>
  5. <html lang="de">
  6. <head>
  7. <meta charset="UTF-8">
  8. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  9. <title>Intranet Formulare</title>
  10. <link rel="stylesheet" href="assets/css/style.css">
  11. </head>
  12. <body>
  13. <header class="site-header">
  14. <div class="container header-inner">
  15. <div class="brand">
  16. <div class="brand-info">
  17. <span class="brand-title">Intranet Formulare</span>
  18. <span class="brand-subtitle">Schnelle & Einfache Datenerfassung</span>
  19. </div>
  20. </div>
  21. <nav class="site-nav">
  22. <a href="create.php" class="btn btn-secondary">Formular erstellen</a>
  23. </nav>
  24. </div>
  25. </header>
  26. <main class="container">
  27. <div class="panel text-center" style="max-width: 600px; margin: 40px auto;">
  28. <h1 class="card-title">Willkommen bei Intranet Formulare</h1>
  29. <p style="margin-bottom: 2rem;">Erstellen Sie schnell einfache Formulare und sammeln Sie Antworten von Ihrem Team.</p>
  30. <a href="create.php" class="btn">Neues Formular erstellen</a>
  31. </div>
  32. </main>
  33. </body>
  34. </html>