16 lines
584 B
PHP
16 lines
584 B
PHP
<section class="auth-panel">
|
|
<h1>Anmelden</h1>
|
|
<form method="post" action="index.php?route=login" class="form">
|
|
<?= csrf_field() ?>
|
|
<label for="email">E-Mail</label>
|
|
<input id="email" name="email" type="email" autocomplete="email" required>
|
|
|
|
<label for="password">Passwort</label>
|
|
<input id="password" name="password" type="password" autocomplete="current-password" required>
|
|
|
|
<button type="submit">Einloggen</button>
|
|
</form>
|
|
<p>Noch kein Konto? <a href="index.php?route=register">Jetzt registrieren</a></p>
|
|
</section>
|
|
|