summaryrefslogtreecommitdiff
path: root/maquette_old/organiser.php
blob: cc50554133e5f427ee34e9461313ced0bd1dee45 (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
67
68
69
<!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>Organiser une r&eacute;unions</title>
<link href="newstyle.css" rel="stylesheet" type="text/css" />
</head>
<body>
<script language="javascript" type="text/javascript">
var newWin = null;
function closeWin(){
if (newWin != null){
if(!newWin.closed)
newWin.close();
}
}
function popUp(strURL,strType,strHeight,strWidth) {
closeWin();
var strOptions="";
if (strType=="console") strOptions="resizable,height="+strHeight+",width="+strWidth;
if (strType=="fixed") strOptions="status,height="+strHeight+",width="+strWidth;
if (strType=="elastic") strOptions="toolbar,menubar,scrollbars,resizable,location,
height="+strHeight+",width="+strWidth;
newWin = window.open(strURL, 'newWin', strOptions);
newWin.focus();
} 
</script>
<div id="titre"><h2>AWOR</h2></div>

<div id="main_menu">
<ul id="menu">
<li><a href="index.html">R&eacute;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&eacute;connexion</a></li>
</ul>
</div>

<div id="sous_menu"><p class="arbre">&gt; <a href="index.html">Accueil</a> &gt; <a href="index.html">R�unions</a> &gt; Cr&eacute;ation d'une r&eacute;union</p></div>

<div id="aide"><h2>Aide</h2>
Dans cet page, vous pouvez organiser une r&eacute;union.<br />
Commencez par nommer votre r&eacute;union et d&eacute;finisez la liste des personnes convi&eacute;s. <br />
Cliquer sur <a href="participants.php">Ajouter des participants</a> pour ajouter des personnes &agrave; votre r&eacute;union.<br />
Ajouter ensuite des <a href="creneaux.php">cr&eacute;neaux</a>.
</div>

<div id="contenu">
<form method="post" action="details_reunion_admin.php">
<table cellspacing="0" class="formulaire">
<thead><tr>
<th colspan="2">D&eacute;tails de la r&eacute;union </th>
</tr></thead>
<tr><td>Objet :</td><td><input name="objetReunion" type="text" id="objetReunion" size="45" /></td></tr>
<tr><td>Ordre du jour :</td><td><input name="OrdreReunion" type="text" id="OrdreReunion" size="45" /></td></tr>
<tr><td>Lieu :</td><td><input name="LieuReunion" type="text" id="LieuReunion" size="45" /></td></tr>
<tr><td>Remarque :</td><td><input name="RemarqueReunion" type="text" id="RemarqueReunion" size="45" /></td></tr>
<tr>
<td>Montrer disponibilit&eacute; : </td><td><input name="MontrerDispoReunion" type="checkbox" id="MontrerDispoReunion" value="checkbox" /></td></tr>
<tr>
<td colspan="2"><input type="submit" name="Submit" value="Cr&eacute;er" /></td>
</tr>
</table>
</form>
</div>

</body>
</html>