fantastic-garbanzo/Redditlikelogin.HTML
2023-07-21 09:54:20 +02:00

8 lines
327 B
HTML

<form action="controller.PHP" 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>