| 1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- // index.php - Landing page
- ?>
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Intranet Forms</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 Forms</span>
- <span class="brand-subtitle">Fast & Simple Data Collection</span>
- </div>
- </div>
- <nav class="site-nav">
- <a href="create.php" class="btn btn-secondary">Create Form</a>
- </nav>
- </div>
- </header>
- <main class="container">
- <div class="panel text-center" style="max-width: 600px; margin: 40px auto;">
- <h1 class="card-title">Welcome to Intranet Forms</h1>
- <p style="margin-bottom: 2rem;">Quickly create simple text forms and gather responses from your team.</p>
- <a href="create.php" class="btn">Create a New Form</a>
- </div>
- </main>
- </body>
- </html>
|