| 1234567891011121314151617181920212223242526272829 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title>Privater Bereich</title>
- <link rel="stylesheet" href="../css/bootstrap.min.css" />
- <link rel="stylesheet" href="../css/styles.css" />
- </head>
- <body>
- <div class="container my-5">
- <h1>Privater Bereich</h1>
- <p class="alert alert-warning">Hier solltest du nur sein, wenn du dich davor eingeloggt hast</p>
- <h2>Logout</h2>
- <form method="POST" action="/auth/logout" enctype="application/x-www-form-urlencoded" class="login-form">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr>
- <td colspan="2">
- <input type="submit" name="submit" value="Logout" />
- </td>
- </tr>
- </table>
- </form>
- </div>
- </body>
- </html>
|