25 lines
760 B
HTML
25 lines
760 B
HTML
|
|
<div class="main">
|
|
<h1>AqHome</h1>
|
|
<h3>Enter your login credentials</h3>
|
|
|
|
<form action="login" method="post">
|
|
<label for="userid">Username:</label>
|
|
<input type="text" id="userid" name="userid" 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> |