fantastic-garbanzo/Redditlikelogin.HTML
2023-07-20 12:32:28 +02:00

8 lines
314 B
HTML

<form action="#" method="post">
<h2>Login</h2>
<label for="username">Username:</label>
<input type="text" id="username" name="username" required>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
<button type="submit">Login</button>
</form>