SaeDEV2.2/html/inscription.html
Ghouar-Toussaint Rafael 996a93da2e ajout
2024-06-10 19:29:21 +02:00

29 lines
795 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="../css/style.css">
<title>Page d'Inscription</title>
</head>
<body>
<h2>Inscription</h2>
<form action="../php/inscription.php" method="post">
<label for="login">Login :</label><br>
<input type="text" id="login" name="login" required><br>
<label for="password">Mot de passe :</label><br>
<input type="password" id="password" name="password" required><br><br>
<label for="role">Role:</label>
<select id="role" name="role" required>
<option value="spectator">Spectator</option>
<option value="athlete">Athlete</option>
<option value="organizer">Organizer</option>
</select><br><br>
<input type="submit" value="S'inscrire">
</form>
</body>
</html>