- 신고 제출 후 alert → 성공 모달로 교체 (신고현황/새신고 버튼) - cross-nav.js: tkreport 페이지 상단 크로스시스템 네비게이션 배너 - report-status.html: AI 신고 도우미 버튼 추가 - common-header.js: tkqc 헤더에 "신고" 외부 링크 추가 - 배포 스크립트/가이드 추가 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
39 lines
1.5 KiB
HTML
39 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
|
<title>AI 신고 도우미 | (주)테크니컬코리아</title>
|
|
<link rel="icon" type="image/png" href="/img/favicon.png">
|
|
<link rel="stylesheet" href="/css/chat-report.css?v=3">
|
|
<script src="/js/api-base.js?v=20260309"></script>
|
|
<script src="/js/app-init.js?v=20260309" defer></script>
|
|
</head>
|
|
<body>
|
|
<!-- Header -->
|
|
<div class="chat-header">
|
|
<button class="chat-header-back" onclick="history.back()" aria-label="뒤로가기">←</button>
|
|
<div>
|
|
<div class="chat-header-title">AI 신고 도우미</div>
|
|
<div class="chat-header-subtitle">대화형 신고 접수</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Chat Area -->
|
|
<div class="chat-area" id="chatArea"></div>
|
|
|
|
<!-- Input Bar -->
|
|
<div class="chat-input-bar">
|
|
<button class="chat-photo-btn" id="photoBtn" aria-label="사진 첨부">📎</button>
|
|
<textarea class="chat-text-input" id="textInput" rows="1" placeholder="문제 상황을 설명해주세요..." enterkeyhint="send"></textarea>
|
|
<button class="chat-send-btn" id="sendBtn" disabled aria-label="전송">➤</button>
|
|
</div>
|
|
|
|
<!-- Hidden file input -->
|
|
<input type="file" id="chatPhotoInput" accept="image/*" style="display:none">
|
|
|
|
<script src="/js/cross-nav.js?v=1"></script>
|
|
<script src="/js/chat-report.js?v=3"></script>
|
|
</body>
|
|
</html>
|