honeypot/public/login.php
vlw 0234ef984b refactor: release 2.0.0 (#1)
Baby steps that implements everything from the original [unfinished] version of this project from a bit over 2 years ago. We'll see what fun stuff we can add over time!

Reviewed-on: https://codeberg.org/vlw/honeypot/pulls/1
Co-authored-by: vlw <victor@vlw.se>
Co-committed-by: vlw <victor@vlw.se>
2025-09-23 20:09:41 +02:00

24 lines
No EOL
837 B
PHP

<style><?= VV::css("assets/css/pages/login") ?></style>
<form method="POST">
<label>
Username
<input name="username" type="text" required></input>
</label>
<label>
Password
<input name="password" type="password" required></input>
</label>
<button type="submit">Log in</button>
</form>
<aside>
<h3>Not Registered yet?</h3>
<p>To get started with mydlink cloud services, you need to have a mydlink-enabled product. Learn more about supported products here.</p>
<p>Please follow these steps in order to register your mdlink-enabled product and get access to both mydlink.com and our mobile apps. Learn more details here.</p>
</aside>
<dialog>
<form method="dialog">
<p>Incorrect username or password</p>
<button>Try again</button>
</form>
</dialog>
<script type="module"><?= VV::js("assets/js/pages/login") ?></script>