Championsleague/register_process.php
2026-02-25 16:23:51 +01:00

24 lines
561 B
PHP

<!DOCTYPE html>
<html>
<head>
<title>Registrieren - CL Projekt</title>
</head>
<body>
<h2>Registrierung</h2>
<form action="register_process.php" method="POST">
Benutzername: <input type="text" name="username" required><br><br>
Passwort: <input type="password" name="password" required><br><br>
Rolle:
<select name="role">
<option value="gast">Gast</option>
<option value="admin">Admin</option>
</select><br><br>
<button type="submit">Registrieren</button>
</form>
<a href="login.php">Zum Login</a>
</body>
</html>