honeypot/public/login.php

36 lines
1.2 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?= VV::css("assets/css/pages/login") ?>
<main>
<div class="container">
<div>
<p>Username:</p>
<p>Password:</p>
</div>
<form method="POST">
<input type="text" name="username"></input>
<input type="password" name="password"></input>
<p class="captcha"><span class="factor">0</span> × <span class="factor">0</span> = ?</p>
<p>Please enter the answer to the above equation.</p>
<input type="password" name="captcha"></input>
<div>
<input type="checkbox" name="remember"></input>
<label>Remember account</label>
</div>
<button class="style main">Sign in</button>
<a href="#">Forgot your passwordd</a>
</form>
</div>
<aside>
<h3>Not Registered yet?</h3>
<ul>
<li>To get started with mydlink cloud services, you need to have a mydlink-enabled product. Learn more about supported products <a href="https://www.mydlink.com/content/productfamily">here</a>.</li>
<li>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.</li>
</ul>
</aside>
</main>
<dialog>
<form method="dialog">
<p></p>
<button class="style main">Try again</button>
</form>
</dialog>
<?= VV::js("assets/js/pages/login") ?>