mirror of
				https://gitlab.com/animath/si/plateforme.git
				synced 2025-11-04 09:42:10 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			803 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			803 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
require_once "header.php" ;
 | 
						|
 | 
						|
if (isset($join_team) && !$has_error) { ?>
 | 
						|
	Vous avez bien rejoint l'équipe <?= $_SESSION["team"]->getName() ?> !
 | 
						|
<?php } else { ?>
 | 
						|
 | 
						|
	<?php if ($has_error) echo "<h2>Erreur : " . $error_message . "</h2>"; ?>
 | 
						|
 | 
						|
	<form method="POST">
 | 
						|
		<input type="hidden" name="submitted" value="true" />
 | 
						|
		<table style="width: 100%;">
 | 
						|
			<tbody>
 | 
						|
			<tr>
 | 
						|
				<td style="width: 30%;">
 | 
						|
					<label for="access_code">Code d'accès :</label>
 | 
						|
				</td>
 | 
						|
				<td style="width: 70%;">
 | 
						|
					<input style="width: 100%;" type="text" id="access_code" name="access_code" />
 | 
						|
				</td>
 | 
						|
			</tr>
 | 
						|
			<tr>
 | 
						|
				<td colspan="2">
 | 
						|
					<input style="width: 100%;" type="submit" value="Rejoindre l'équipe" />
 | 
						|
				</td>
 | 
						|
			</tr>
 | 
						|
			</tbody>
 | 
						|
		</table>
 | 
						|
	</form>
 | 
						|
 | 
						|
<?php } ?>
 | 
						|
 | 
						|
<?php require_once "footer.php" ?>
 |