카카오톡 인앱 WebView는 서브도메인 간 쿠키를 공유하지 않아 tkds에서 로그인 후 tkfb로 리다이렉트 시 인증이 풀리는 문제. - sso-relay.js: URL hash의 _sso= 토큰을 로컬 쿠키+localStorage로 설정 - gateway dashboard: 로그인 후 redirect URL에 #_sso=<token> 추가 - 전 서비스 HTML: core JS 직전에 sso-relay.js 로드 (81개 파일) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
330 lines
10 KiB
HTML
330 lines
10 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>내 프로필 - TK 공장관리</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
|
<link rel="stylesheet" href="/static/css/tkfb.css?v=2026040103">
|
|
|
|
<style>
|
|
.profile-page {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
padding: 40px 20px;
|
|
}
|
|
|
|
.profile-header {
|
|
text-align: center;
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
.profile-avatar {
|
|
width: 120px;
|
|
height: 120px;
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 3rem;
|
|
color: white;
|
|
margin: 0 auto 20px;
|
|
box-shadow: 0 8px 24px rgba(0,0,0,0.15);
|
|
}
|
|
|
|
.profile-name {
|
|
font-size: 2rem;
|
|
font-weight: 700;
|
|
color: #333;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.profile-role {
|
|
font-size: 1.2rem;
|
|
color: #666;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.profile-cards {
|
|
display: grid;
|
|
gap: 24px;
|
|
}
|
|
|
|
.profile-card {
|
|
background: white;
|
|
border-radius: 12px;
|
|
box-shadow: 0 4px 16px rgba(0,0,0,0.08);
|
|
padding: 28px;
|
|
}
|
|
|
|
.card-title {
|
|
font-size: 1.3rem;
|
|
font-weight: 600;
|
|
color: #333;
|
|
margin-bottom: 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.info-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
gap: 20px;
|
|
}
|
|
|
|
.info-item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 6px;
|
|
}
|
|
|
|
.info-label {
|
|
font-size: 0.85rem;
|
|
color: #666;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.info-value {
|
|
font-size: 1.05rem;
|
|
color: #333;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.action-buttons {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 12px;
|
|
margin-top: 24px;
|
|
}
|
|
|
|
.action-btn {
|
|
padding: 12px 24px;
|
|
border: none;
|
|
border-radius: 8px;
|
|
font-size: 0.95rem;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
text-decoration: none;
|
|
font-family: inherit;
|
|
}
|
|
|
|
.btn-primary {
|
|
background: #1976d2;
|
|
color: white;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background: #1565c0;
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
.btn-secondary {
|
|
background: #f5f5f5;
|
|
color: #333;
|
|
border: 1px solid #e0e0e0;
|
|
}
|
|
|
|
.btn-secondary:hover {
|
|
background: #e0e0e0;
|
|
}
|
|
|
|
.btn-warning {
|
|
background: #ff9800;
|
|
color: white;
|
|
}
|
|
|
|
.btn-warning:hover {
|
|
background: #f57c00;
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
/* 통계 카드 */
|
|
.stats-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
|
|
gap: 16px;
|
|
margin-top: 16px;
|
|
}
|
|
|
|
.stat-box {
|
|
background: #f5f5f5;
|
|
border-radius: 8px;
|
|
padding: 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
.stat-number {
|
|
font-size: 2rem;
|
|
font-weight: 700;
|
|
color: #1976d2;
|
|
display: block;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.stat-label {
|
|
font-size: 0.9rem;
|
|
color: #666;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.profile-page {
|
|
padding: 20px 16px;
|
|
}
|
|
|
|
.profile-avatar {
|
|
width: 100px;
|
|
height: 100px;
|
|
font-size: 2.5rem;
|
|
}
|
|
|
|
.profile-name {
|
|
font-size: 1.6rem;
|
|
}
|
|
|
|
.info-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.action-buttons {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.action-btn {
|
|
width: 100%;
|
|
justify-content: center;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body class="bg-gray-50">
|
|
<header class="bg-orange-700 text-white sticky top-0 z-50">
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
|
<div class="flex justify-between items-center h-14">
|
|
<div class="flex items-center gap-3">
|
|
<button id="mobileMenuBtn" class="lg:hidden text-orange-200 hover:text-white"><i class="fas fa-bars text-xl"></i></button>
|
|
<i class="fas fa-industry text-xl text-orange-200"></i>
|
|
<h1 class="text-lg font-semibold">TK 공장관리</h1>
|
|
</div>
|
|
<div class="flex items-center gap-4">
|
|
<span id="headerUserName" class="text-sm hidden sm:block">-</span>
|
|
<div id="headerUserAvatar" class="w-8 h-8 bg-orange-600 rounded-full flex items-center justify-center text-sm font-bold">-</div>
|
|
<button onclick="doLogout()" class="text-orange-200 hover:text-white" title="로그아웃"><i class="fas fa-sign-out-alt"></i></button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
<div id="mobileOverlay" class="hidden fixed inset-0 bg-black/50 z-30 lg:hidden"></div>
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-4 fade-in">
|
|
<div class="flex gap-6">
|
|
<nav id="sideNav" class="hidden lg:flex flex-col gap-1 w-52 flex-shrink-0 pt-2 fixed lg:static z-40 bg-white lg:bg-transparent p-4 lg:p-0 rounded-lg lg:rounded-none shadow-lg lg:shadow-none top-14 left-0 bottom-0 overflow-y-auto"></nav>
|
|
<div class="flex-1 min-w-0">
|
|
<div class="profile-page">
|
|
<div class="profile-header">
|
|
<div class="profile-avatar" id="profileAvatar"></div>
|
|
<h1 class="profile-name" id="profileName">사용자</h1>
|
|
<p class="profile-role" id="profileRole">역할</p>
|
|
</div>
|
|
|
|
<div class="profile-cards">
|
|
<!-- 기본 정보 -->
|
|
<div class="profile-card">
|
|
<h2 class="card-title">기본 정보</h2>
|
|
<div class="info-grid">
|
|
<div class="info-item">
|
|
<span class="info-label">사용자 ID</span>
|
|
<span class="info-value" id="userId">-</span>
|
|
</div>
|
|
<div class="info-item">
|
|
<span class="info-label">사용자명</span>
|
|
<span class="info-value" id="username">-</span>
|
|
</div>
|
|
<div class="info-item">
|
|
<span class="info-label">이름</span>
|
|
<span class="info-value" id="fullName">-</span>
|
|
</div>
|
|
<div class="info-item">
|
|
<span class="info-label">권한 레벨</span>
|
|
<span class="info-value" id="accessLevel">-</span>
|
|
</div>
|
|
<div class="info-item">
|
|
<span class="info-label">작업자 ID</span>
|
|
<span class="info-value" id="workerId">-</span>
|
|
</div>
|
|
<div class="info-item">
|
|
<span class="info-label">가입일</span>
|
|
<span class="info-value" id="createdAt">-</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- 활동 정보 -->
|
|
<div class="profile-card">
|
|
<h2 class="card-title">활동 정보</h2>
|
|
<div class="info-grid">
|
|
<div class="info-item">
|
|
<span class="info-label">마지막 로그인</span>
|
|
<span class="info-value" id="lastLogin">-</span>
|
|
</div>
|
|
<div class="info-item">
|
|
<span class="info-label">이메일</span>
|
|
<span class="info-value" id="email">-</span>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- 간단한 통계 (준비중) -->
|
|
<div class="stats-grid" style="margin-top: 24px; opacity: 0.5;">
|
|
<div class="stat-box">
|
|
<span class="stat-number">-</span>
|
|
<span class="stat-label">작업 보고서</span>
|
|
</div>
|
|
<div class="stat-box">
|
|
<span class="stat-number">-</span>
|
|
<span class="stat-label">이번 달 활동</span>
|
|
</div>
|
|
<div class="stat-box">
|
|
<span class="stat-number">-</span>
|
|
<span class="stat-label">팀 기여도</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- 빠른 작업 -->
|
|
<div class="profile-card">
|
|
<h2 class="card-title">빠른 작업</h2>
|
|
<div class="action-buttons">
|
|
<a href="/pages/profile/password.html" class="action-btn btn-warning">
|
|
비밀번호 변경
|
|
</a>
|
|
<button class="action-btn btn-secondary" disabled>
|
|
프로필 수정 (준비중)
|
|
</button>
|
|
<button class="action-btn btn-secondary" disabled>
|
|
설정 (준비중)
|
|
</button>
|
|
<a href="javascript:history.back()" class="action-btn btn-secondary">
|
|
<span>←</span>
|
|
<span>돌아가기</span>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="/js/sso-relay.js?v=20260401"></script>
|
|
<script src="/static/js/tkfb-core.js?v=2026040105"></script>
|
|
<script src="/js/api-base.js?v=2026031401"></script>
|
|
<script type="module" src="/js/my-profile.js"></script>
|
|
<script>initAuth();</script>
|
|
</body>
|
|
</html>
|