index.html 948 B

1234567891011121314151617181920212223242526272829
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <title>Privater Bereich</title>
  8. <link rel="stylesheet" href="../css/bootstrap.min.css" />
  9. <link rel="stylesheet" href="../css/styles.css" />
  10. </head>
  11. <body>
  12. <div class="container my-5">
  13. <h1>Privater Bereich</h1>
  14. <p class="alert alert-warning">Hier solltest du nur sein, wenn du dich davor eingeloggt hast</p>
  15. <h2>Logout</h2>
  16. <form method="POST" action="/auth/logout" enctype="application/x-www-form-urlencoded" class="login-form">
  17. <table border="0" cellpadding="0" cellspacing="0">
  18. <tr>
  19. <td colspan="2">
  20. <input type="submit" name="submit" value="Logout" />
  21. </td>
  22. </tr>
  23. </table>
  24. </form>
  25. </div>
  26. </body>
  27. </html>