thinkst / opencanary

Modular and decentralised honeypot
http://opencanary.org
BSD 3-Clause "New" or "Revised" License
2.27k stars 355 forks source link

New web Skin #259

Closed Neleus closed 1 year ago

Neleus commented 1 year ago

Hello! I'm created new web Skin for https://github.com/thinkst/opencanary/tree/master/opencanary/modules/data/http/skin But I have one problem with button "Sign In". It isn't working.

            <section class="login">
                <form class="login" method="POST" action="/index.html">
                    <div class="linput">
                        <div></div>
                        <input type="text" name="login">
                    </div>
                    <div class="linput">
                        <div></div>
                        <input type="password" name="password">
                    </div>
                    <div class="lcheckbox">
                        <input type="checkbox" id="checkbox">
                        <label for="checkbox">
                            <div></div>
                            <span>Stay signed in</span>
                        </label>
                    </div>
                    <div class="lsubmit">
                        <input type="submit" value="Sign In">
                    </div>
                </form>
            </section>

@jayjb Question: Do we need some nested structure to Web Page to make form work and sent data to /index.html or maybe some specific tags for form?