mirror of
https://codeberg.org/vlw/honeypot.git
synced 2025-11-05 04:22:43 +01:00
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>
24 lines
No EOL
837 B
PHP
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>
|