summaryrefslogtreecommitdiff
path: root/maquette/organiser.php
diff options
context:
space:
mode:
Diffstat (limited to 'maquette/organiser.php')
-rw-r--r--maquette/organiser.php69
1 files changed, 69 insertions, 0 deletions
diff --git a/maquette/organiser.php b/maquette/organiser.php
new file mode 100644
index 0000000..cc50554
--- /dev/null
+++ b/maquette/organiser.php
@@ -0,0 +1,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>