GameHub/stranky/Login.html
2024-04-21 12:48:12 +02:00

10 lines
371 B
HTML

<div class="login-container">
<h2>Login</h2>
<form id="login-form">
<input type="text" id="login-username" placeholder="Username" required>
<input type="password" id="login-password" placeholder="Password" required>
<button type="submit">Login</button>
</form>
<p>Don't have an account? <a href="signup.html">Sign up</a></p>
</div>