
            <html>
            <body style="padding:50px;text-align:center;font-family:Arial">
                <h3>需要验证</h3>
                <p>访问链接：<br>
                <code style="background:#f0f0f0;padding:5px;border-radius:3px">
                https://chat.damo.plus?authkey=你的密码
                </code></p>
                <p>或直接输入密码：</p>
                <input type="password" id="pwd" placeholder="密码">
                <button onclick="login()">进入</button>
                <script>
                    function login() {
                        var pwd = document.getElementById("pwd").value;
                        window.location.search = "?authkey=" + encodeURIComponent(pwd);
                    }
                    document.getElementById("pwd").onkeypress = function(e) {
                        if(e.key === "Enter") login();
                    };
                </script>
            </body>
            </html>
            