Add MySQL schema dump for phpMyAdmin

This commit is contained in:
Thomas
2025-10-28 14:08:03 +01:00
parent f956a735ca
commit 8e608d03ec
49 changed files with 1929 additions and 1 deletions

View File

@@ -0,0 +1,24 @@
<?php $title = 'Login'; ob_start(); ?>
<div class="card" style="max-width: 420px; margin: 4rem auto;">
<h2 style="margin-top: 0;">Log ind</h2>
<p style="margin-top: 0; color: rgba(148, 163, 184, 0.75);">Adgang til TuxiNet kundeservice og udviklingsportalen.</p>
<?php if (!empty($error)): ?>
<div class="alert"><?= htmlspecialchars($error) ?></div>
<?php endif; ?>
<form method="POST" action="/login">
<div style="display: grid; gap: 1rem;">
<label>
<span style="display:block;margin-bottom:0.25rem;">Email</span>
<input type="email" name="email" required style="width:100%;padding:0.75rem;border-radius:0.75rem;border:1px solid rgba(148,163,184,0.2);background:rgba(15,23,42,0.65);color:#e2e8f0;">
</label>
<label>
<span style="display:block;margin-bottom:0.25rem;">Password</span>
<input type="password" name="password" required style="width:100%;padding:0.75rem;border-radius:0.75rem;border:1px solid rgba(148,163,184,0.2);background:rgba(15,23,42,0.65);color:#e2e8f0;">
</label>
<button type="submit" class="btn btn-primary">Login</button>
</div>
</form>
</div>
<?php $content = ob_get_clean(); include base_path('resources/views/layout/app.php'); ?>