31 lines
642 B
PHP
31 lines
642 B
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>";
|
||
|
?>
|
||
|
|
||
|
<form method="POST">
|
||
|
<table style="width: 100%;">
|
||
|
<tbody>
|
||
|
<tr>
|
||
|
<td style="width: 30%;">
|
||
|
<label for="link">Lien de la vidéo :</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";
|