From f55d097d97c3c81382c441f612b0ce2881e63334 Mon Sep 17 00:00:00 2001 From: Ludovic Pouzenc <ludovic@pouzenc.fr> Date: Sat, 30 Jun 2018 11:19:32 +0200 Subject: Renommage pour diff entre maquette_old et maquette --- maquette/organiser.php | 69 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 maquette/organiser.php (limited to 'maquette/organiser.php') 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é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é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="index.html">R�unions</a> > Création d'une réunion</p></div> + +<div id="aide"><h2>Aide</h2> +Dans cet page, vous pouvez organiser une réunion.<br /> +Commencez par nommer votre réunion et définisez la liste des personnes conviés. <br /> +Cliquer sur <a href="participants.php">Ajouter des participants</a> pour ajouter des personnes à votre réunion.<br /> +Ajouter ensuite des <a href="creneaux.php">cré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étails de la ré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é : </td><td><input name="MontrerDispoReunion" type="checkbox" id="MontrerDispoReunion" value="checkbox" /></td></tr> +<tr> +<td colspan="2"><input type="submit" name="Submit" value="Créer" /></td> +</tr> +</table> +</form> +</div> + +</body> +</html> -- cgit v1.2.3