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 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
|
<html>
<head>
<title>Site de voyages</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
<link href="/Symfony/web/css/style.css" rel="stylesheet" type="text/css">
<link href="/Symfony/web/css/calendrier.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="/Symfony/web/js/fichier.js">
GererChkbox();
</script>
<style type="text/css">
</style>
</head>
<body>
<table class="ds_box" cellpadding="0" cellspacing="0" id="ds_conclass" style="display: none;">
<tr><td id="ds_calclass">
</td></tr>
</table>
<script type="text/javascript" src="calendrier.js">
</script>
<div id="banner">
<p><a href="index.php"><img src="images/home.gif" alt="homepage"></a> | <a href="mailto:mohamed.ben_yahya@insa-rouen.fr"><img src="images/mail.gif" alt="contact"></a></p>
<h1> Bienvenu sur mon site de voyages</h1>
</div>
<div id="menu">
<ul id="nav">
<li id="home"><a href="Acceuil.php">Accueil</a></li>
<li id="who" class="activelink"><a href="index.php">Réservation</a></li>
<li id="prod"><a href="Horaires.php">Horaires</a></li>
<li id="serv"><a href="Horaires.php">Services</a></li>
<li id="cont"><a href="Horaires.php">Contact</a></li>
</ul>
</div><div id="container">
<div id="content">
<h1><span style="font-weight:bold; color:#C4DA64;">Réserver votre voyage</span></h1>
<p class="big"> </p>
<div id="box">
<h2><img src="images/last.gif" alt="ad"> Reservation </h2>
<blockquote>
<form name="formulaire" method="post" action="CasePost.php">
<input type="checkbox" name="ar" id="ar" value ="1" onclick="GererChkbox();" />aller/retour
<input type="checkbox" name="as" id="as" value ="2" onclick="GererChkbox();" />aller simple</p>
<br> Départ :
<select name="villeD">
<option value="Paris"> Paris </option> ;
<option value="Lyon"> Lyon </option> ;
<option value="Marseille"> Marseille </option> ;
<option value="Rouen"> Rouen </option> ;
</select>
<br>Destination:
<select name="villeA">
<option value="Paris"> Paris </option> ;
<option value="Lyon"> Lyon </option> ;
<option value="Marseille"> Marseille </option> ;
<option value="Rouen"> Rouen </option> ;
</select>
<div>
Départ le : <input onclick="ds_sh(this);" name="date" readonly="readonly" style="cursor: text" /><br />
Retour le : <input onclick="ds_sh(this);" name="date2" readonly="readonly" style="cursor: text" /><br />
</div>
<br>Nombre de passagers :<br>
<input type="submit" value="Envoyer">
</form>
</div>
<p></p>
</div>
<div id="content_right">
<dl class="curved">
<dt>Liens recommandés</dt>
<dd> <br />
<ul id="navlist">
<li><a href="index.php">lien1</a></li>
<li><a href="index.php">lien2</a></li>
<li><a href="index.php">lien3</a></li>
<li><a href="index.php">lien4</a></li>
<li><a href="index.php">lien5</a></li>
<li><a href="index.php">lien6</a></li>
</ul>
<p class="last"> </p>
</dd>
</dl>
<dl class="curved">
<dt>Plus d'informations</dt>
<dd>
<p></p>
<p class="last"> </p>
</dd>
</dl>
</div>
</div>
<div id="footer">
<p><a href="index.php">homepage</a> | <a href="mailto:mohamed.ben_yahya@insa-rouen.fr">contact</a> | © 2013 créé par BEN YAHYA Mohamed </p>
</div>
<div id="sfwdt513a27e3e5047" class="sf-toolbar" style="display: none"></div><script type="text/javascript">/*<![CDATA[*/ Sfjs = (function() { "use strict"; var noop = function() {}, profilerStorageKey = 'sf2/profiler/', request = function(url, onSuccess, onError, payload, options) { var xhr = window.XMLHttpRequest ? new XMLHttpRequest() : new ActiveXObject('Microsoft.XMLHTTP'); options = options || {}; xhr.open(options.method || 'GET', url, true); xhr.setRequestHeader('X-Requested-With', 'XMLHttpRequest'); xhr.onreadystatechange = function(state) { if (4 === xhr.readyState && 200 === xhr.status) { (onSuccess || noop)(xhr); } else if (4 === xhr.readyState && xhr.status != 200) { (onError || noop)(xhr); } }; xhr.send(payload || ''); }, hasClass = function(el, klass) { return el.className.match(new RegExp('\\b' + klass + '\\b')); }, removeClass = function(el, klass) { el.className = el.className.replace(new RegExp('\\b' + klass + '\\b'), ' '); }, addClass = function(el, klass) { if (!hasClass(el, klass)) { el.className += " " + klass; } }, getPreference = function(name) { if (!window.localStorage) { return null; } return localStorage.getItem(profilerStorageKey + name); }, setPreference = function(name, value) { if (!window.localStorage) { return null; } localStorage.setItem(profilerStorageKey + name, value); }; return { hasClass: hasClass, removeClass: removeClass, addClass: addClass, getPreference: getPreference, setPreference: setPreference, request: request, load: function(selector, url, onSuccess, onError, options) { var el = document.getElementById(selector); if (el && el.getAttribute('data-sfurl') !== url) { request( url, function(xhr) { el.innerHTML = xhr.responseText; el.setAttribute('data-sfurl', url); removeClass(el, 'loading'); (onSuccess || noop)(xhr, el); }, function(xhr) { (onError || noop)(xhr, el); }, options ); } return this; }, toggle: function(selector, elOn, elOff) { var i, style, tmp = elOn.style.display, el = document.getElementById(selector); elOn.style.display = elOff.style.display; elOff.style.display = tmp; if (el) { el.style.display = 'none' === tmp ? 'none' : 'block'; } return this; } } })();/*]]>*/</script><script type="text/javascript">/*<![CDATA[*/ (function () { Sfjs.load( 'sfwdt513a27e3e5047', '/Symfony/web/app_dev.php/_wdt/513a27e3e5047', function(xhr, el) { el.style.display = -1 !== xhr.responseText.indexOf('sf-toolbarreset') ? 'block' : 'none'; if (el.style.display == 'none') { return; } if (Sfjs.getPreference('toolbar/displayState') == 'none') { document.getElementById('sfToolbarMainContent-513a27e3e5047').style.display = 'none'; document.getElementById('sfToolbarClearer-513a27e3e5047').style.display = 'none'; document.getElementById('sfMiniToolbar-513a27e3e5047').style.display = 'block'; } else { document.getElementById('sfToolbarMainContent-513a27e3e5047').style.display = 'block'; document.getElementById('sfToolbarClearer-513a27e3e5047').style.display = 'block'; document.getElementById('sfMiniToolbar-513a27e3e5047').style.display = 'none'; } }, function(xhr) { if (xhr.status !== 0) { confirm('An error occurred while loading the web debug toolbar (' + xhr.status + ': ' + xhr.statusText + ').\n\nDo you want to open the profiler?') && (window.location = '/Symfony/web/app_dev.php/_profiler/513a27e3e5047'); } } ); })();/*]]>*/</script>
</body>
</html> |