mirror of
				https://gitlab.com/animath/si/plateforme-corres2math.git
				synced 2025-11-04 12:32:23 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			42 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
require_once "header.php";
 | 
						|
 | 
						|
if ($has_error)
 | 
						|
	echo "<h2>Erreur : $error_message</h2>";
 | 
						|
elseif (isset($new_video))
 | 
						|
	echo "<h2>Votre vidéo a bien été envoyée !</h2>";
 | 
						|
?>
 | 
						|
 | 
						|
<?php
 | 
						|
if ($video !== null) {
 | 
						|
    $link = $video->getLink();
 | 
						|
    echo "Lien de la vidéo déjà envoyée : <a href=\"$link\">$link</a> (version " . $video->getVersion() . ")<br />";
 | 
						|
    if (preg_match("#(https?\://|)(www\.|)youtube\.com\/watch\?v=(.*)#", $link, $matches)) {
 | 
						|
        $code = $matches[3];
 | 
						|
        echo "<center><iframe width=\"854px\" height=\"480px\" src=\"https://www.youtube.com/embed/$code\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe></center><br />";
 | 
						|
    }
 | 
						|
}
 | 
						|
?>
 | 
						|
 | 
						|
<form method="POST">
 | 
						|
	<table style="width: 100%;">
 | 
						|
		<tbody>
 | 
						|
		<tr>
 | 
						|
			<td style="width: 30%;">
 | 
						|
				<label for="link">Lien de la vidéo à soumettre :</label>
 | 
						|
			</td>
 | 
						|
			<td style="width: 70%;">
 | 
						|
				<input style="width: 100%;" type="url" id="link" name="link" />
 | 
						|
			</td>
 | 
						|
		</tr>
 | 
						|
		<tr>
 | 
						|
			<td colspan="2">
 | 
						|
				<input style="width: 100%;" type="submit" name="upload" value="Envoyer la vidéo" />
 | 
						|
			</td>
 | 
						|
		</tr>
 | 
						|
		</tbody>
 | 
						|
	</table>
 | 
						|
</form>
 | 
						|
 | 
						|
<?php require_once "footer.php";
 |