{#This file is part of EC-CUBECopyright(c) EC-CUBE CO.,LTD. All Rights Reserved.http://www.ec-cube.co.jp/For the full copyright and license information, please view the LICENSEfile that was distributed with this source code.#}{% extends 'default_frame.twig' %}{% block stylesheet %} <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick-theme.css"> <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css"> <link rel="stylesheet" href="//unpkg.com/flatpickr/dist/flatpickr.min.css"> <!-- カスタムテーマ --> <link rel="stylesheet" href="//unpkg.com/flatpick/dist/themes/airbnb.css"> <link rel="stylesheet" href="{{ asset('assets/css/input.css') }}?{{ env('CSS_PARAM') }}"> <link rel="stylesheet" href="{{ asset('assets/css/limitedoffer.css') }}?{{ env('CSS_PARAM') }}"> <link rel="stylesheet" href="{{ asset('assets/css/limitedoffer-privacy.css') }}?{{ env('CSS_PARAM') }}">{% endblock %}{% block javascript %} <script src="//unpkg.com/flatpickr"></script> <script src="//unpkg.com/flatpickr/dist/l10n/ja.js"></script> <script src="{{ asset('assets/js/hotelinfo].js') }}?{{ env('JS_PARAM') }}"></script> <script src="{{ asset('assets/js/limitedoffer.js') }}?{{ env('JS_PARAM') }}"></script> <script src="{{ asset('assets/js/telcode.js') }}?{{ env('JS_PARAM') }}"></script> <script> //Googleカレンダー予約状況 reservedInfo={{ events|raw }}; calendar_start_date="{{ calendar_start_date }}"; </script>{% endblock %}{% block main %} <div class="contents"> <form name="reserveForm" action="{{ url('limited_reserved') }}" method="post" class="reserveForm"> <input type="hidden" name="referralhotel" class="referralhotel" value=""> <section class="container"> <h3 style=" margin-top: 20px;">Reservation holder</h3> <div class="w100"> <p class="ec-para-normal position_error"> Please enter the necessary information to make a reservation. After submission, the provisional bookig will be confirmed. </p> <p class="reserevedError" style="display:none;">Reservation information is not set correctly</p> </div> <div class="Form-Item name item"> <p class="Form-Item-Label">Date</p> <input name="startdate" type="text" class="Form-Item-Input flatpickr flatpickr-input startdate" placeholder="2024-01-01" id="myCal" value=""> <span class="Form-Item-Error startdate" style="display: none;">*Please Select</span> </div> <div class="Form-Item name item"> <p class="Form-Item-Label">Name</p> <input name="name" type="text" class="Form-Item-Input name" placeholder="John Smith" value=""> <span class="Form-Item-Error name" style="display: none;">*Please enter</span> </div> <div class="Form-Item name"> <p class="Form-Item-Label">Country</p> <input name="country" type="text" class="Form-Item-Input country" placeholder="Australia" value=""> <span class="Form-Item-Error country" style="display: none;">*Please enter</span> </div> <div class="Form-Item email"> <p class="Form-Item-Label">Mail</p> <input name="email" type="email" class="Form-Item-Input email" placeholder="example@gmail.com" value=""> <span class="Form-Item-Error email" style="display: none;">*Please enter</span> </div> <div class="Form-Item tel"> <p class="Form-Item-Label">Tel</p> <select name="telcode" class="Form-Item-Input telcode"> <option value=""></option> </select> <input name="tel" type="tel" class="Form-Item-Input tel" placeholder="112222333" value=""> <span class="Form-Item-Error tel" style="display: none;">*Please select and enter</span> </div> <div class="Form-Item"> <p class="Form-Item-Label block-line">Number Of Participants</p> <span class="note"></span> <select name="participants" class="Form-Item-Input participants"> <option value="1">1</option> <option value="2">2</option> <option value="3">3</option> <option value="4">4</option> </select> </div>{# <div class="Form-Item"> <p class="Form-Item-Label block-line">English Interpretation Option</p> <span class="note">*The option fee is free of charge.</span> <select name="english" class="Form-Item-Input english"> <option value="No Need">No Need</option> <option value="Need">Need</option> </select> </div> <div class="Form-Item"> <p class="Form-Item-Label block-line">Free shuttle service</p> <span class="note">*Limited to hotels in Minato/Chiyoda/Chuo/Shinagawa/Meguro/Shibuya .</span> <select name="transfer" class="Form-Item-Input transfer"> <option value="No Need">No Need</option> <option value="One way">One way</option> <option value="Round Trip">Round Trip</option> </select> </div>#} <div class="Form-Item"> <p class="Form-Item-Label">PickUp Location</p> <span class="note">*Specify the pick-up location, please.If not listed, please provide the hotel name in the comments.</span> <select name="pickup" class="Form-Item-Input pickup"> <option value="">Please select</option> </select> <span class="Form-Item-Error pickup" style="display: none;">*Please select</span> </div> <div class="Form-Item pcOnly"> </div> <div class="Form-Item commnet"> <p class="Form-Item-Label">Comment</p> <span class="note">*If you have any requests, please enter them.</span> <textarea rows="5" class="Form-Item-Textarea" name="message"></textarea> </div> {{ include('/Plan/limited-privacy.twig') }} <div class="ec-checkbox idp"> <label> <input type="checkbox" id="deposit" class="terms" name="terms" required="required" value="1" data-gtm-form-interact-field-id="0"> <label for="deposit"> <span></span> </label> I agree to the Terms and Conditions </label> <div class="Form-Item-Error terms" style="display: none;">*Please Check</div> </div> </section> <section class="container btn"> <div class="Form-Item"> <a class="ec-shopCollectionBtn back" href="/awd/plan/512">back</a> </div> <div class="Form-Item"> <a class="ec-shopCollectionBtn submit" href="javascript:void(0)">Reserve</a> </div> </section> </div>{% endblock %}