    <!DOCTYPE html>
    <html lang="de">

    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Login</title>
        <style type="text/css">
            body {
                font-family: Arial, sans-serif;
                font-size: 14px;
                color: #333;
            }

            table {
                width: 100%;
                border-collapse: collapse;
            }

            th,
            td {
                padding: 8px;
                text-align: left;
                border-bottom: 1px solid #ddd;
            }

            th {
                background-color: #f2f2f2;
            }

            a {
                color: #1a0dab;
                text-decoration: none;
            }

            a:hover {
                text-decoration: underline;
            }
        </style>
    </head>

    <body>
        <h1>Bitte melden Sie sich an</h1>
                <form method="post" action="">
            <label for="password">Passwort:</label>
            <input type="password" name="password" id="password" required>
            <button type="submit">Anmelden</button>
        </form>
    </body>

    </html>
    