| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <!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>Öffentlicher 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>Öffentlicher Bereich</h1>
- <p>Hier darf jeder auf alles zugreifen.</p>
- <p>Ein paar verlinkte Ressourcen als Beweis:</p>
- <div class="row mb-4">
- <div class="col-6">
- <img class="img-thumbnail bg-light p-5" src="img/logo_sirius_blau.png" />
- </div>
- <div class="col-6">
- <img class="img-thumbnail bg-primary p-5" src="img/logo_sirius_weiss.png" />
- </div>
- </div>
- <p>
- <a href="other.html">Hier geht's noch woanders hin ...</a>
- </p>
- <h2>Login zum eingeschränkten Bereich</h2>
- <form method="POST" action="/auth/login" enctype="application/x-www-form-urlencoded" class="login-form">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr>
- <td>Benutzer:</td>
- <td>
- <input type="text" name="user" value="testuser" />
- </td>
- </tr>
- <tr>
- <td>Passwort:</td>
- <td>
- <input type="password" name="password" value="pass1234" />
- </td>
- </tr>
- <tr>
- <td colspan="2">
- <input type="submit" name="submit" value="Login" />
- </td>
- </tr>
- </table>
- </form>
- </div>
- </body>
- </html>
|