1
|
<!DOCTYPE html>
|
2
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr">
|
3
|
<head>
|
4
|
<meta http-equiv="Content-type" content="text/html; charset=UTF-8"/>
|
5
|
<link type="image/x-icon" rel="shortcut icon" href="images/tsf.png"/>
|
6
|
<link rel="stylesheet" media="screen" href="css/view.css" />
|
7
|
<title>Envoi d'une image sur le serveur</title>
|
8
|
</head>
|
9
|
<body id="main_body">
|
10
|
<img id="top" src="images/top.png" alt="">
|
11
|
<div id="form_container">
|
12
|
<h1><img src="images/tetaneutral.svg"></h1>
|
13
|
<form action="uploadReceive.php" method="post" enctype="multipart/form-data" id="upload">
|
14
|
<h2>Ajouter un nouveau panorama</h2>
|
15
|
<ul>
|
16
|
<li id="li_1" >
|
17
|
<label for="file" class="description">Envoyer le fichier :</label>
|
18
|
<div>
|
19
|
<input type="hidden" name="APC_UPLOAD_PROGRESS" id="progress_key" value="panoramas"/>
|
20
|
<input type="file" name="files[]" id="file" multiple="multiple"
|
21
|
title="Le fichier à envoyer doit être une image de taille maximale 300 Mo"/>
|
22
|
</div>
|
23
|
</li>
|
24
|
|
25
|
<li class="buttons">
|
26
|
<input type="submit" name="submit" id="submit" value="Submit" />
|
27
|
</li>
|
28
|
</ul>
|
29
|
</form>
|
30
|
|
31
|
<div id="footer">
|
32
|
<a href="./index.php">Retour liste</a>
|
33
|
</div>
|
34
|
</div>
|
35
|
</body>
|
36
|
</html>
|