GameHub/stranky/Login.html
2024-04-21 17:13:30 +02:00

9 lines
358 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">Sign up</a></p>
</div>