blob: 415cde4cc6fbf3b112febd69c33fa8a11e68220a (
plain)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
<!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>Listes de contacts</title>
<link href="newstyle.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="titre"><h2>AWOR</h2></div>
<div id="main_menu">
<ul id="menu">
<li><a href="index.html">Réunions</a></li>
<li><a href="listes.php">Groupes</a></li>
<li><a href="profil.php">Mon profil</a></li>
<li><a href="ical.php">iCal</a></li>
<li id="deconnection"><a href="deco.php">Déconnexion</a></li>
</ul>
</div>
<div id="sous_menu">
<p class="arbre">> <a href="index.html">Accueil</a> > <a href="listes.php">Groupes</a> > Listes des groupes</p>
</div>
<div id="aide"><h2>Aide</h2>
Cette page vous permet de gérer les différentes listes de contacts.
</div>
<div id="contenu">
<a href="#" onclick="window.open('ajouterListe.php','wclose','toolbar=no,status=yes,left=20,top=30')">Créer une liste</a><br />
<br/>
<table cellspacing="0">
<thead>
<tr>
<th> </th>
<th>Type</th>
<th>Libellé</th>
</tr>
</thead>
<tr>
<td><img src="./images/del.gif" alt="Non disponible" width="15" height="15" /></td>
<td>Privée</td>
<td><a href="gestListes.php">Mes contacts préférés</a> </td>
</tr>
<tr>
<td><img src="./images/del.gif" alt="Non disponible" width="15" height="15" /></td>
<td>Privée</td>
<td><a href="gestListes.php">Professeurs de TP de réseau</a></td>
</tr>
<tr>
<td> </td>
<td>Public</td>
<td><a href="gestListes.php">Conseil d'administration</a></td>
</tr>
<tr>
<td> </td>
<td>Public</td>
<td><a href="gestListes.php">Tous</a></td>
</tr>
</table>
<br />
<a href="#" onclick="window.open('ajouterListe.php','wclose','toolbar=no,status=yes,left=20,top=30')">Créer une liste</a><br /><br />
</div>
</body>
</html>
|