⛰️ TRAILTRIP
← 뒤로
🏕️
1인 기준
-
예약하기
로그인 / 예약자 정보
카카오 로그인 또는 정보 입력으로 예약하세요.
📱 인스타그램 브라우저에서는 카카오 로그인이 제한돼요. 아래 정보 입력으로 예약을 진행해주세요.
카카오 로그인
또는 정보 직접 입력
이름 *
지역 *
연락처 *
이메일 (선택)
예약 계속하기 →
// 인스타그램 인앱브라우저 감지 (function(){ const ua = navigator.userAgent; const isInsta = ua.includes('Instagram'); if(isInsta) { const banner = document.createElement('div'); banner.style.cssText = 'position:fixed;top:0;left:0;right:0;z-index:9999;background:#E76F51;color:white;padding:12px 20px;text-align:center;font-size:13px;font-weight:700;'; banner.innerHTML = '⚠️ 카카오 로그인은 외부 브라우저에서만 가능해요.
Safari/Chrome으로 열기 →
'; document.body.prepend(banner); } })(); (function(){ const ua = navigator.userAgent; const isInsta = ua.includes('Instagram') || ua.includes('FBAN') || ua.includes('FBAV'); if(isInsta) { // 안드로이드: intent로 크롬 강제 실행 const isAndroid = ua.includes('Android'); const isIOS = ua.includes('iPhone') || ua.includes('iPad'); const div = document.createElement('div'); div.style.cssText = 'position:fixed;inset:0;z-index:9999;background:rgba(0,0,0,.85);display:flex;align-items:center;justify-content:center;padding:24px;'; div.innerHTML = `
📱
외부 브라우저로 열어주세요
카카오 로그인은 인스타그램 앱 내에서 동작하지 않아요.
아래 버튼을 눌러 외부 브라우저로 열어주세요.
🌐 외부 브라우저로 열기
우측 상단 ⋮ → 브라우저에서 열기
`; document.body.appendChild(div); } })();