diff options
author | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2018-06-30 11:19:32 +0200 |
---|---|---|
committer | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2018-06-30 11:19:32 +0200 |
commit | f55d097d97c3c81382c441f612b0ce2881e63334 (patch) | |
tree | ec6167735ab6184eaf05e99d262c6acdc28e22bf /maquette/gestListes.php | |
parent | a25edc8edf23e652dbd529b8c42199ae559905a1 (diff) | |
download | 2007-AWOR-f55d097d97c3c81382c441f612b0ce2881e63334.tar.gz 2007-AWOR-f55d097d97c3c81382c441f612b0ce2881e63334.tar.bz2 2007-AWOR-f55d097d97c3c81382c441f612b0ce2881e63334.zip |
Renommage pour diff entre maquette_old et maquette
Diffstat (limited to 'maquette/gestListes.php')
-rw-r--r-- | maquette/gestListes.php | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/maquette/gestListes.php b/maquette/gestListes.php new file mode 100644 index 0000000..f77d3cb --- /dev/null +++ b/maquette/gestListes.php @@ -0,0 +1,57 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
+<title>AWOR : Gestions des listes</title>
+<link href="newstyle.css" rel="stylesheet" type="text/css" />
+</head>
+<body>
+<table class="formulaire">
+<tr>
+<th colspan="3">Gestion des listes </th>
+</tr>
+<tr>
+<td>Contacts disponibles </td>
+<td> </td>
+<td>Contacts</td>
+</tr>
+<tr>
+<td>
+<select name="listeDispo" id="listeDispo">
+<option>Tous</option>
+<option>Liste prof</option>
+<option>PPP</option>
+<option>Specialiste language C</option>
+<option>Pro-linux</option>
+<option>Pro-windows</option>
+</select></td>
+<td> </td>
+<td> </td>
+</tr>
+<tr>
+<td>
+<select name="contactDispo" size="10" id="contactDispo">
+<option>Andriana</option>
+<option>Jérémie Denoyer</option>
+</select></td>
+<td><input name="AjouterParticipant" type="button" id="AjouterParticipant" value="Ajouter" />
+<br/>
+<br/>
+<input name="supprimerParticipant" type="button" id="supprimerParticipant" value="Retirer" /></td>
+<td>
+<select name="participants" size="10" id="participants">
+<option>Andriana</option>
+<option>Ludovic Pouzenc</option>
+</select></td>
+</tr>
+<tr>
+<td><input name="newContact" type="button" id="newContact" value="Ajouter un nouveau contact"/></td>
+<td> </td>
+<td> </td>
+</tr>
+<tr>
+<td colspan="3"><input type="submit" name="Submit" value="Valider" /></td>
+</tr>
+</table>
+</body>
+</html>
|