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_old/organiser.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_old/organiser.php')
-rw-r--r-- | maquette_old/organiser.php | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/maquette_old/organiser.php b/maquette_old/organiser.php deleted file mode 100644 index cc50554..0000000 --- a/maquette_old/organiser.php +++ /dev/null @@ -1,69 +0,0 @@ -<!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>
|