2017-11-05 19:14:36 +09:00
@ extends ( 'layouts.base' )
2017-08-27 04:44:53 +09:00
2019-01-08 23:27:48 +09:00
@ section ( 'title' , 'チェックイン' )
2017-08-27 04:44:53 +09:00
@ section ( 'content' )
2020-08-30 13:57:02 +09:00
< div class = " container " >
2017-11-05 19:14:36 +09:00
< h2 > 今致してる? </ h2 >
< hr >
< div class = " row justify-content-center mt-5 " >
< div class = " col-lg-6 " >
2017-11-06 00:49:10 +09:00
< form method = " post " action = " { { route('checkin') }} " >
2017-11-05 19:14:36 +09:00
{{ csrf_field () }}
2020-08-30 13:57:02 +09:00
< div id = " checkinForm " >
< div class = " text-center small " style = " height: 640px; " > しばらくお待ちください… </ div >
2017-08-27 04:44:53 +09:00
</ div >
2017-11-05 19:14:36 +09:00
</ form >
2020-05-23 17:33:58 +09:00
< p class = " text-center small mt-4 " >< strong > Tips </ strong >: ブックマークレットや共有機能で、簡単にチェックインできます! < a href = " { { route('checkin.tools') }} " target = " _blank " rel = " noopener " > 使い方はこちら </ a ></ p >
2017-11-05 19:14:36 +09:00
</ div >
2017-08-27 04:44:53 +09:00
</ div >
</ div >
@ endsection
2017-11-05 19:14:36 +09:00
@ push ( 'script' )
2020-08-30 13:57:02 +09:00
< script id = " initialState " type = " application/json " >@ json ( $initialState ) </ script >
2019-03-05 01:26:17 +09:00
< script src = " { { mix('js/checkin.js') }} " ></ script >
2019-06-11 22:16:40 +09:00
@ endpush