17 lines
394 B
PHP
17 lines
394 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Login - CL Projekt</title>
|
|
</head>
|
|
<body>
|
|
<h2>Login</h2>
|
|
|
|
<form action="login_process.php" method="POST">
|
|
Benutzername: <input type="text" name="username" required><br><br>
|
|
Passwort: <input type="password" name="password" required><br><br>
|
|
<button type="submit">Login</button>
|
|
</form>
|
|
|
|
<a href="register.php">Registrieren</a>
|
|
</body>
|
|
</html> |