<link href="/wp-content/themes/hillter-child/reservations/datepicker3.css" rel="stylesheet" />

<style>

	.res-form {
		margin:0;
		padding:0;
		margin-top: 2px;
	}

	.res-form .form-group {
		margin: 0;
	}

	.res-form input, .res-form select, {
		font-family: Roboto, Helvetica, Arial, sans-serif !important;
	}

	.res-form label{
		color: #fff;
		font-size: 12px;
		font-weight: 400;
		line-height: 1.07143;
		margin: 9px 0 0;
	}

	.res-form input[type="search"],
	.res-form input[type="text"],
	.res-form input[type="url"],
	.res-form input[type="number"],
	.res-form input[type="password"],
	.res-form input[type="email"],
	.res-form input[type="file"],
	.res-form input[type="tel"],
	.res-form select,
	.res-form textarea {
		background: none;
		border: 0;
		border-bottom:2px solid  !important;
		border-color:rgba(255,255,255, 0.8) !important;
		border-right:none !important;
		border-left:none !important;
		border-top:none !important;
		color: #fff;
		font-family: Roboto, Helvetica, Arial, sans-serif !important;
		font-size: 12px;
		padding: 5px ;
		width: 100%;
		height: auto;
		line-height: 19px;
	}

	.form-control, .form-group .form-control {
    background-color: rgba(0, 0, 0, 0);
    background-image: none;
	background-color:none;
	border-bottom:1px solid #fff;
	}

	.res-form .form-control::-webkit-input-placeholder { font-size: 12px; }
	.res-form .form-control:-moz-placeholder { font-size: 12px; }
	.res-form .form-control::-moz-placeholder { font-size: 12px; }
	.res-form .form-control:-ms-input-placeholder { font-size: 12px; }

	.res-form .input-group-addon {
		background: none;
		border: 0;
		border-radius: 0;
		color: #fff;
		font-size: 14px;
		font-weight: 400;
		line-height: 1;
		padding: 25px 12px 0;
		text-align: center;
	}

	#begindate{ color:#fff;}

	.btn-group-raised .btn.btn-primary, .btn-group-raised .input-group-btn .btn.btn-primary, .btn.btn-fab.btn-primary, .btn.btn-raised.btn-primary, .input-group-btn .btn.btn-fab.btn-primary, .input-group-btn .btn.btn-raised.btn-primary {
	background-color: rgba(255, 255, 255, 1) !important;
    color: #333333;
	font-family:Arial, Helvetica, sans-serif;
}

	.btn.btn-raised.btn-primary:hover {
    background-color: #8f0b15 !important;
    /*color: rgba(255, 255, 255, 1);*/
    color: #ffffff;
		border: 1px #ffffff solid;
}

	.form-control::-moz-placeholder {
    color: #fff;
}

.btn {
    font-family: 'Roboto';
    font-size: 16px!important;
}

.datepicker-dropdown {
    z-index: 99999;
}

.form-group option {
    color:#333333;
}

.adultes-res{
	margin-top:5px;
}
.date-fin{
	margin-bottom:10px;
}

@media only screen 
and (min-device-width : 200px) 
and (max-device-width : 767px) {
.adultes-res{
	margin-top:-2px;
}
}
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) {
.adultes-res{
	margin-top:2px;
}
}

</style>

<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" rel="stylesheet" />

<div class="row">
<form class="res-form" action="https://secure.reservit.com/front169855/front.do" target="_blank">

			<div class="col-sm-1">
            </div>
            <div class="col-sm-3">
				<div class="input-group date" data-provide="datepicker" data-date-format="dd/mm/yyyy">
					<label>&nbsp;</label>
					<input type="text" name="begindate" id="begindate" class="form-control" placeholder="Arrival">
					<div class="input-group-addon">
						<i class="fa fa-calendar"></i>
					</div>
				</div>
			</div>
			<div class="col-sm-3">
				<div class="input-group date-fin date" data-provide="datepicker" data-date-format="dd/mm/yyyy">
					<label>&nbsp;</label>
					<input type="text" name="enddate" id="enddate" class="form-control" placeholder="Departure">
					<div class="input-group-addon">
						<i class="fa fa-calendar"></i>
					</div>
				</div>
			</div>
			<div class="col-sm-3">
				<div class="form-group">
					<label>Adult(s)</label>
					<select id="adultes" name="adultes" class="form-control adultes-res" >
						<option value="1">1</option>
                        <option value="2">2</option>
						<option value="3">3</option>
						<option value="4">4</option>
					</select>
				</div>
			</div>


            <div class="col-sm-2 pull-right">
				<button id="reserve" type="submit" class="btn btn-primary btn-raised">Book now</button>
			</div>
		</div>


	<input type="hidden" id="roomAge1" name="roomAge1" value=""/>
	<input type="hidden" name="m" value="booking"/>
	<input type="hidden" name="custid" value="58"/>
	<input type="hidden" name="hotelid" value="169855"/>
	<input type="hidden" name="langcode" value="FR"/>
	<input type="hidden" id="dateformat" value="dd/mm/yy"/>
</form>

<script src="/wp-content/themes/hillter-child/reservations/bootstrap-datepicker.js"></script>
<script src="/wp-content/themes/hillter-child/reservations/bootstrap-datepicker.fr.js"></script>
<script>
	jQuery(document).ready(function($){

		$('.datepicker').datepicker({
			format: 'dd/mm/yyyy',
			language: "fr"
		});


		$('#reserve').click(function(e){
			e.preventDefault();
			var adultes = parseInt($('#adultes').val());
			var enfants = parseInt($('#enfants').val());
			var roomAge1 = '';
			for (var i = 0, max = adultes; i < max; i++) {
				if(i != 0 ) {
					roomAge1 += ',';
				}
				roomAge1 += '40';
			}
			for (var i = 0, max = enfants; i < max; i++) {
				roomAge1 += ',12';
			}
			$('#roomAge1').val(roomAge1);
			$('.res-form').submit();
			return false;
		});
	})
</script>
{"id":4778,"date":"2017-10-23T17:56:41","date_gmt":"2017-10-23T15:56:41","guid":{"rendered":"https:\/\/beta.latourdulac.ca\/politique-de-confidentialite\/"},"modified":"2018-07-26T22:00:12","modified_gmt":"2018-07-26T20:00:12","slug":"privacy-policy","status":"publish","type":"page","link":"https:\/\/latourdulac.ca\/en\/privacy-policy\/","title":{"rendered":"Privacy policy"},"content":{"rendered":"<div class=\"wpb-content-wrapper\"><p>[vc_row full_width=&#8221;stretch_row&#8221; parallax=&#8221;content-moving&#8221; parallax_image=&#8221;4467&#8243; parallax_speed_bg=&#8221;0&#8243; enable_overlay=&#8221;&#8221; css=&#8221;.vc_custom_1532355492700{padding-top: 200px !important;padding-bottom: 20px !important;background-position: center;background-repeat: no-repeat !important;background-size: cover !important;}&#8221; el_class=&#8221;titre-page&#8221;][vc_column el_class=&#8221;fadein-h1 fadeInh1&#8243;]<div class=\"awe-special-heading text-left\" style=\"color:#ffffff;\"><h1 style=\"font-size:47px\">Privacy Policy<\/h1><\/div>[\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content&#8221; parallax=&#8221;content-moving&#8221; parallax_image=&#8221;4426&#8243; parallax_speed_bg=&#8221;0&#8243; el_class=&#8221;bloc-reservation&#8221;][vc_column][vc_column_text size=&#8221;0&#8243; css=&#8221;.vc_custom_1532356269862{margin-top: -80px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}&#8221;]<\/p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">See availability<\/span><\/h2>\n<p>[\/vc_column_text][vc_column_text size=&#8221;0&#8243; css=&#8221;.vc_custom_1512056117505{margin-bottom: -80px !important;padding-bottom: 0px !important;}&#8221;][\/vc_column_text][\/vc_column][\/vc_row][vc_row css=&#8221;.vc_custom_1515528533413{margin-top: 25px !important;}&#8221;][vc_column]<div class=\"awe-special-heading text-left\" style=\"padding-bottom:10px;\"><h2>Privacy Policy<\/h2><\/div>[vc_column_text size=&#8221;0&#8243;]<strong>Protecting your privacy is very important to us\u00a0and this page will help you to understand our policies regarding your personal information.<\/strong>[\/vc_column_text][\/vc_column][\/vc_row][vc_row][vc_column][vc_column_text size=&#8221;0&#8243;]<strong>Information Collection<\/strong><\/p>\n<p>There are times that we may request that you voluntarily supply us with personal information, including your name and E-mail address. This information is used for purposes such as correspondance, site registration, purchasing services and registering for new services.<\/p>\n<p>We also track customer traffic patterns and site usage.\u00a0 Traffic and usage data is used only to improve our site\u2019s design and for promotional offers.<\/p>\n<p>Your IP address, browser and reference site domain name are logged every time you visit our site. This data is used strictly for the analysis of load information and maximizing the efficiency of our servers.\u00a0 Except as provided in this privacy policy, we will not share this data with anyone in any way.<\/p>\n<p><i>As you browse latourdulac.ca and other websites, online ad networks we work with may place anonymous cookies on your computer, and use similar technologies, in order to understand your interests based on your (anonymous) online activities, and thus to tailor more relevant ads to you. \u00a0\u00a0If you do not wish to receive such tailored advertising, you can visit this\u00a0<\/i><a href=\"http:\/\/www.networkadvertising.org\/choices\/\"><i>page<\/i><\/a><i>\u00a0to opt out of most companies that engage in such advertising. \u00a0(This will not prevent you from seeing ads; the ads simply will not be delivered through these targeting methods.)<\/i><\/p>\n<p><strong>Information Use<\/strong><\/p>\n<p>If you provide us with your E-mail address, or have done so in the past, we may upon occasion send you E-mail offers. We may use information you have given us to, for example, provide a service, measure consumer interest in our various services, and inform you about new products and services. These offers may be based on information you provided in your initial transaction with us, in surveys, or from information that may indicate purchasing preferences and lifestyle.<\/p>\n<p>Subject to the terms and conditions of this Privacy Policy, any communication or material you transmit or post to this Web Site by email or otherwise, (other than personally identifiable information which will be treated in accordance with this privacy policy), is and will be treated as non-confidential and non-proprietary and anything you transmit or post may be used by us for any purpose, including without limitation, reproduction and posting.\u00a0 We are free to use any ideas, know-how, or techniques contained in any communication or material that you send to this Web Site for any purpose whatsoever including, but not limited to, marketing products using such information.<br \/>\nWe may also use your information in statistical form in our presentations with prospective clients or partners. This information contains no personally identifiable information.<\/p>\n<p>Except as provided in this privacy policy, we will not sell, rent or disclose account data to anyone in any way without your consent. (However, we will cooperate fully should a situation arise where we are required by law or requested by a law enforcement agency to provide information about a customer.)[\/vc_column_text][\/vc_column][\/vc_row]<\/p>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>[vc_row full_width=&#8221;stretch_row&#8221; parallax=&#8221;content-moving&#8221; parallax_image=&#8221;4467&#8243; parallax_speed_bg=&#8221;0&#8243; enable_overlay=&#8221;&#8221; css=&#8221;.vc_custom_1532355492700{padding-top: 200px !important;padding-bottom: 20px !important;background-position: center;background-repeat: no-repeat !important;background-size: cover !important;}&#8221; el_class=&#8221;titre-page&#8221;][vc_column el_class=&#8221;fadein-h1 fadeInh1&#8243;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content&#8221; parallax=&#8221;content-moving&#8221; parallax_image=&#8221;4426&#8243; parallax_speed_bg=&#8221;0&#8243; el_class=&#8221;bloc-reservation&#8221;][vc_column][vc_column_text size=&#8221;0&#8243; css=&#8221;.vc_custom_1532356269862{margin-top: -80px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}&#8221;] See availability [\/vc_column_text][vc_column_text size=&#8221;0&#8243; css=&#8221;.vc_custom_1512056117505{margin-bottom: -80px !important;padding-bottom: 0px !important;}&#8221;][\/vc_column_text][\/vc_column][\/vc_row][vc_row css=&#8221;.vc_custom_1515528533413{margin-top: 25px !important;}&#8221;][vc_column][vc_column_text size=&#8221;0&#8243;]Protecting your privacy is very important to us\u00a0and this&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"rs_blank_template":"","rs_page_bg_color":"","slide_template_v7":"","footnotes":""},"class_list":["post-4778","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Privacy policy of the inn - Auberge La Tour Du Lac<\/title>\n<meta name=\"description\" content=\"Protecting your privacy is very important to us and this page will help you to understand our policies regarding your personal information.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/latourdulac.ca\/en\/privacy-policy\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Privacy policy of the inn - Auberge La Tour Du Lac\" \/>\n<meta property=\"og:description\" content=\"Protecting your privacy is very important to us and this page will help you to understand our policies regarding your personal information.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/latourdulac.ca\/en\/privacy-policy\/\" \/>\n<meta property=\"og:site_name\" content=\"La Tour du lac\" \/>\n<meta property=\"article:modified_time\" content=\"2018-07-26T20:00:12+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/latourdulac.ca\\\/en\\\/privacy-policy\\\/\",\"url\":\"https:\\\/\\\/latourdulac.ca\\\/en\\\/privacy-policy\\\/\",\"name\":\"Privacy policy of the inn - Auberge La Tour Du Lac\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/latourdulac.ca\\\/#website\"},\"datePublished\":\"2017-10-23T15:56:41+00:00\",\"dateModified\":\"2018-07-26T20:00:12+00:00\",\"description\":\"Protecting your privacy is very important to us and this page will help you to understand our policies regarding your personal information.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/latourdulac.ca\\\/en\\\/privacy-policy\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/latourdulac.ca\\\/en\\\/privacy-policy\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/latourdulac.ca\\\/en\\\/privacy-policy\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/latourdulac.ca\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Privacy policy\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/latourdulac.ca\\\/#website\",\"url\":\"https:\\\/\\\/latourdulac.ca\\\/\",\"name\":\"La Tour du lac\",\"description\":\"Un site utilisant WordPress\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/latourdulac.ca\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Privacy policy of the inn - Auberge La Tour Du Lac","description":"Protecting your privacy is very important to us and this page will help you to understand our policies regarding your personal information.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/latourdulac.ca\/en\/privacy-policy\/","og_locale":"en_US","og_type":"article","og_title":"Privacy policy of the inn - Auberge La Tour Du Lac","og_description":"Protecting your privacy is very important to us and this page will help you to understand our policies regarding your personal information.","og_url":"https:\/\/latourdulac.ca\/en\/privacy-policy\/","og_site_name":"La Tour du lac","article_modified_time":"2018-07-26T20:00:12+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/latourdulac.ca\/en\/privacy-policy\/","url":"https:\/\/latourdulac.ca\/en\/privacy-policy\/","name":"Privacy policy of the inn - Auberge La Tour Du Lac","isPartOf":{"@id":"https:\/\/latourdulac.ca\/#website"},"datePublished":"2017-10-23T15:56:41+00:00","dateModified":"2018-07-26T20:00:12+00:00","description":"Protecting your privacy is very important to us and this page will help you to understand our policies regarding your personal information.","breadcrumb":{"@id":"https:\/\/latourdulac.ca\/en\/privacy-policy\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/latourdulac.ca\/en\/privacy-policy\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/latourdulac.ca\/en\/privacy-policy\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/latourdulac.ca\/en\/"},{"@type":"ListItem","position":2,"name":"Privacy policy"}]},{"@type":"WebSite","@id":"https:\/\/latourdulac.ca\/#website","url":"https:\/\/latourdulac.ca\/","name":"La Tour du lac","description":"Un site utilisant WordPress","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/latourdulac.ca\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/latourdulac.ca\/en\/wp-json\/wp\/v2\/pages\/4778","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/latourdulac.ca\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/latourdulac.ca\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/latourdulac.ca\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/latourdulac.ca\/en\/wp-json\/wp\/v2\/comments?post=4778"}],"version-history":[{"count":5,"href":"https:\/\/latourdulac.ca\/en\/wp-json\/wp\/v2\/pages\/4778\/revisions"}],"predecessor-version":[{"id":4783,"href":"https:\/\/latourdulac.ca\/en\/wp-json\/wp\/v2\/pages\/4778\/revisions\/4783"}],"wp:attachment":[{"href":"https:\/\/latourdulac.ca\/en\/wp-json\/wp\/v2\/media?parent=4778"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}