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 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
|
<!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=utf-8" /><title>
</title>
<script type="text/javascript" src="/Scripts/jquery-1.9.1.js"></script>
<script type="text/javascript" src="/Scripts/jquery-ui-1.10.2.custom.min.js" ></script>
<script type="text/javascript" src="/Scripts/ImgDefilante.js" language="jscript"></script>
<script type="text/javascript" src="/Scripts/ModalPopupResult.js" ></script>
<link href="/Styles/custom-theme/jquery-ui-1.10.2.custom.min.css" rel="stylesheet" type="text/css" /><link href="../Styles/Site.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="/Scripts/InitDatePicker.js"></script>
<script type="text/javascript">
$(function () {
$("#from").datepicker({
defaultDate: "+1w",
numberOfMonths: 3,
dateFormat: "DD, d MM, yy",
minDate : 0,
onClose: function (selectedDate) {
$("#to").datepicker("option", "minDate", selectedDate);
}
});
$("#to").datepicker({
defaultDate: "+1w",
numberOfMonths: 2,
dateFormat: "DD, d MM, yy",
minDate: 0,
onClose: function (selectedDate) {
$("#from").datepicker("option", "maxDate", selectedDate);
}
});
});
</script>
</head>
<body>
<form name="aspnetForm" method="post" action="Reservation.aspx" id="aspnetForm">
<div>
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwULLTE1MjQ5ODA0NjlkZEp1fq1UECVowakqD3J1yPP39u2X" />
</div>
<div>
<div class="page">
<div class="header">
<div id="Login">
<img src="/Images/Flag/fr.png" id="flgFr" />
<img src="/Images/Flag/gb.png" id="FlgGb" />
</div>
<center>
<div id="bandeau" style="position: relative; width: 700px; height: 120px; overflow: hidden;">
</div>
</center>
</div>
<div class="main">
<br />
<ul id="ctl00_NavigationMenu" class="menu_deroulant">
<li><a href="/Accueil.aspx" title="">Accueil</a></li>
<li><a href="/Client/Details.aspx" title="">Descriptif</a></li>
<li><a href="/Client/Loisir.aspx" title="">Loisirs et activités</a></li>
<li><a href="/Client/Reservation.aspx" title="">Tarifs et disponibilités</a></li>
<li><a href="/Client/Localisation.aspx" title="">Localisation</a></li>
</ul>
<div>
<div style="float: left;">
<center>
<strong class="TxtAppart">Tarifs</strong></center>
<br />
<center>
<table>
<tr class="Ligne">
<td align="left">
Haute saison
</td>
<td>
du 01/01/2013
</td>
<td>
au 30/04/2013
</td>
<td>
1200
</td>
</tr>
<tr class="LigneAlt">
<td align="left">
Moyenne saison
</td>
<td>
du 01/05/2013
</td>
<td>
au 30/09/2013
</td>
<td>
1000
</td>
</tr>
<tr class="Ligne">
<td align="left">
Basse saison
</td>
<td>
du 01/10/2013
</td>
<td>
au 31/12/2013
</td>
<td>
900
</td>
</tr>
</table>
</center>
<span id="ctl00_MainContent_lblTarif" class="TxtAppart"></span>
</div>
</div>
<div style="float: right; width: 450px;">
<center>
<strong class="TxtAppart">Disponibilités</strong><br />
</center>
<br />
<div>
<div style="float: left;">
<center>
<table>
<tr>
<td>
<input type="text" id="from" width="60" />
</td>
<td>
<input type="text" id="to" width="60" />
</td>
</tr>
</table>
</center>
</div>
</div>
<div class="clear">
</div>
<br />
<br />
</div>
</div>
<div class="clear">
</div>
<br />
</div>
<div class="footer">
<a id="ctl00_lnkAccueil" href="../Accueil.aspx">Accueil </a>-
<a id="ctl00_lnkMentionLeg" href="../MentionLegale.aspx">Mentions légales </a>
-
<a id="ctl00_lnkContact" href="../Contact.aspx">Nous contacter
</a>
</div>
</div>
<div id="MsgBack" title="Download complete">
<div class='subcontent-box' id='Errortitre'>
</div>
</div>
</form>
</body>
</html> |
Partager