1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
| <html>
<head>
<link rel="stylesheet" type="text/css" href="index.css">
<script language="JavaScript">
function Deplacer(l1,l2) {
if (l1.options.selectedIndex>=0) {
o=new Option(l1.options[l1.options.selectedIndex].text,l1.options[l1.options.selectedIndex].value);
l2.options[l2.options.length]=o;
l1.options[l1.options.selectedIndex]=null; } }
</script>
</head>
<body>
<center>
<table class=tab_erreur>
<tr><td>Version en cours : 1.0 - Patch en cours : 1</td></tr>
</table><br>
<form action="patch.php" method=POST>
<table>
<tr><td>Serveurs</td><td></tr><tr><td><br></td></tr>
<tr><td>
<select name=serveur_choix multiple size=20 class=multiple>
<option value=1>toto</option>
<option value=2>titi</option>
<option value=3>tata</option>
</select>
</td>
<td>
<input type=button value="Ajouter >" onClick="Deplacer(this.form.serveur_choix,this.form.serveur);">
<br><br>
<input type=button value="< Enlever" onClick="Deplacer(this.form.serveur,this.form.serveur_choix);">
</td>
<td>
<select name=serveur multiple size=20 class=multiple>
</select>
</td>
</tr></table>
<br>
<input type=submit value=INSTALLER>
</form>
</center>
</body>
</html> |