Commit 6b537cf3 by Palti Sinaga

new calendar

parent 0f3eed02
...@@ -24,20 +24,19 @@ ...@@ -24,20 +24,19 @@
<div class="col-md-3 col-sm-3 agileits w3layouts contact-grid contact-grid-2 wow slideInLeft"> <div class="col-md-3 col-sm-3 agileits w3layouts contact-grid contact-grid-2 wow slideInLeft">
<input type="text" class="text wow agileits w3layouts slideInLeft" name="jumlah_kamar" placeholder="Jumlah Kamar" required="" style="background-color: white; color: black"> <input type="text" class="text wow agileits w3layouts slideInLeft" name="jumlah_kamar" placeholder="Jumlah Kamar" required="" style="background-color: white; color: black">
</div> </div>
<<<<<<< HEAD
<div class="col-md-3 col-sm-3 agileits w3layouts contact-grid contact-grid-2 wow slideInLeft" style="margin-top: 10px;"> <div class="col-md-3 col-sm-3 agileits w3layouts contact-grid contact-grid-2 wow slideInLeft" style="margin-top: 10px;">
<button class="btn btn-success " >BOOK NOW</button> <button class="btn btn-success " >BOOK NOW</button>
=======
<div class="col-md-3 col-sm-3 agileits w3layouts contact-grid contact-grid-2 wow slideInLeft"> <div class="col-md-3 col-sm-3 agileits w3layouts contact-grid contact-grid-2 wow slideInLeft">
<<<<<<< HEAD
<a href="{{url('history')}}" id="book" > <a href="{{url('history')}}" id="book" >
<input type="button" class="more_btn wow agileits w3layouts slideInLeft" value="Book Now"> <input type="button" class="more_btn wow agileits w3layouts slideInLeft" value="Book Now">
</a> </a>
=======
<input type="submit" class="more_btn wow agileits w3layouts slideInLeft" value="Book Now"> <input type="submit" class="more_btn wow agileits w3layouts slideInLeft" value="Book Now">
>>>>>>> f3f2287d7c86a7c8efc0162c242d120bfcaf820a
>>>>>>> 36fc9a9037d0772bcfa4c52323fe8a6c39550bd5
</div> </div>
</form> </form>
</div> </div>
...@@ -113,13 +112,13 @@ ...@@ -113,13 +112,13 @@
<div class="details agileits w3layouts"> <div class="details agileits w3layouts">
<div class="container"> <div class="container">
<div class="col-md-6 col-sm-6 agileits w3layouts contact-grid contact-grid-2 wow slideInLeft"> <div class="col-md-6 col-sm-6 agileits w3layouts contact-grid contact-grid-2 wow slideInLeft">
<<<<<<< HEAD
<h2 style="margin-bottom: 10px;"> Kritik dan Saran</h2> <h2 style="margin-bottom: 10px;"> Kritik dan Saran</h2>
<form action="#" method="post" style="margin-bottom: 25px;"> <form action="#" method="post" style="margin-bottom: 25px;">
=======
<h2 style="margin-bottom: 10px;"> Kritik dan Saran </h2> <h2 style="margin-bottom: 10px;"> Kritik dan Saran </h2>
<form action ="#" method="post" style="margin-bottom: 25px;"> <form action ="#" method="post" style="margin-bottom: 25px;">
>>>>>>> f3f2287d7c86a7c8efc0162c242d120bfcaf820a
<input type="text" class="text wow agileits w3layouts slideInLeft" name="Name" placeholder="Name" required=""> <input type="text" class="text wow agileits w3layouts slideInLeft" name="Name" placeholder="Name" required="">
<input type="text" class="text wow agileits w3layouts slideInLeft" name="Email" placeholder="Email" required=""> <input type="text" class="text wow agileits w3layouts slideInLeft" name="Email" placeholder="Email" required="">
<textarea name="Message" class="wow agileits w3layouts slideInLeft" placeholder="Message" required=""></textarea> <textarea name="Message" class="wow agileits w3layouts slideInLeft" placeholder="Message" required=""></textarea>
...@@ -140,10 +139,10 @@ ...@@ -140,10 +139,10 @@
document.getElementById('book').onclick = function(){ document.getElementById('book').onclick = function(){
swal("Good job!", "You clicked the button!", "success");}; swal("Good job!", "You clicked the button!", "success");};
</script> </script>
<<<<<<< HEAD
@endsection @endsection
</div> </div>
=======
...@@ -177,9 +176,3 @@ ...@@ -177,9 +176,3 @@
}; };
</script> </script>
<<<<<<< HEAD
@endsection
=======
>>>>>>> f3f2287d7c86a7c8efc0162c242d120bfcaf820a
>>>>>>> 36fc9a9037d0772bcfa4c52323fe8a6c39550bd5
...@@ -77,30 +77,24 @@ ...@@ -77,30 +77,24 @@
<!-- //Booking-Popup-Box-JavaScript --> <!-- //Booking-Popup-Box-JavaScript -->
<!-- Date-Picker-JavaScript --> <!-- Date-Picker-JavaScript -->
<script src="{{asset('js/jquery-ui.js')}}"></script> <script>
<script> $('#datepicker2').datepicker({
$(function() { dateFormat: "dd-M-yy"
$( "#datepicker,#datepicker1,#datepicker2" ).datepicker({minDate:0}); });
});
</script>
<!-- //Date-Picker-JavaScript -->
<!-- new date picker --> $("#datepicker1").datepicker({
<!-- <script> dateFormat: "dd-M-yy",
$(function() { minDate: 0,
$( "#datepicker,#datepicker1" ).datepicker({minDate:0}); onSelect: function(date){
$("#datepicker,#datepicker2").datepicker({ var date1 = $('#datepicker1').datepicker('getDate');
onSelect:function(date){ var date = new Date( Date.parse( date1 ) );
var date1 = $('#datepicker1').datepicker('getDate'); date.setDate( date.getDate() + 1 );
var date = new Date(Date.parse(date1)); var newDate = date.toDateString();
date.setDate(date.getDate()+1); newDate = new Date( Date.parse( newDate ) );
var newDate = date.toDateString(); $('#datepicker2').datepicker("option","minDate",newDate);
newDate = newDate(Date.parse(newDate)); }
$('#datepicker2').datepicker({minDate:0}); });
} </script>
};)
});
</script> -->
<!-- //new date picker --> <!-- //new date picker -->
<!-- //Custom-JavaScript-File-Links --> <!-- //Custom-JavaScript-File-Links -->
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment