Files
aqhomecontrol/apps/aqhome-cgi/modules/static/en/login.html
2025-06-12 23:30:08 +02:00

25 lines
757 B
HTML

<div class="main">
<h1>AqHome</h1>
<h3>Enter your login credentials</h3>
<form action="login" method="post">
<label for="first">Username:</label>
<input type="text" id="first" name="first" placeholder="Enter your Username" required>
<label for="password">Password:</label>
<input type="password" id="password" name="password" placeholder="Enter your Password" required>
<div class="wrap">
<button type="submit">Submit</button>
</div>
</form>
<p>Not registered?
<a href="signup" style="text-decoration: none;">
Create an account
</a>
</p>
</div>
</body>
</html>