pharmacy-pos-qr-system/backend/templates/claim_kakao_success.html
thug0bin 31cf6e3816 feat: 카카오 로그인으로 마일리지 적립 기능 추가
- 카카오 OAuth 2.0 클라이언트 모듈 추가 (services/kakao_client.py)
- 적립 페이지에 "카카오로 적립하기" 버튼 추가
- OAuth 콜백 처리: 전화번호 자동 적립 / 미제공 시 폰 입력 폴백
- state 파라미터로 claim 컨텍스트 보존 + CSRF 보호
- customer_identities 테이블 활용한 카카오 계정 연결
- 마이페이지 헤더 sticky 고정
- 카카오 OAuth 설정 가이드 문서 추가

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-25 02:27:05 +09:00

188 lines
5.6 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>적립 완료 - 청춘약국</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700&display=swap" rel="stylesheet">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
background: #f5f7fa;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
padding: 16px;
-webkit-font-smoothing: antialiased;
}
.app-container {
background: #ffffff;
border-radius: 24px;
max-width: 420px;
width: 100%;
box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
overflow: hidden;
text-align: center;
padding: 60px 24px;
}
.success-icon-wrap {
width: 80px;
height: 80px;
background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
border-radius: 50%;
margin: 0 auto 24px auto;
display: flex;
align-items: center;
justify-content: center;
animation: scaleIn 0.4s ease;
}
@keyframes scaleIn {
0% { transform: scale(0); opacity: 0; }
60% { transform: scale(1.1); }
100% { transform: scale(1); opacity: 1; }
}
.success-icon-wrap svg {
width: 40px;
height: 40px;
fill: none;
stroke: #ffffff;
stroke-width: 3;
stroke-linecap: round;
stroke-linejoin: round;
stroke-dasharray: 100;
stroke-dashoffset: 100;
animation: drawCheck 0.6s 0.3s ease forwards;
}
@keyframes drawCheck {
to { stroke-dashoffset: 0; }
}
.success-title {
font-size: 24px;
font-weight: 700;
color: #212529;
margin-bottom: 16px;
letter-spacing: -0.5px;
}
.success-name {
font-size: 15px;
color: #868e96;
font-weight: 500;
margin-bottom: 20px;
}
.success-name strong {
color: #495057;
}
.success-points {
font-size: 48px;
font-weight: 700;
color: #6366f1;
margin-bottom: 8px;
letter-spacing: -1.5px;
}
.success-balance {
color: #868e96;
font-size: 15px;
font-weight: 500;
margin-bottom: 32px;
letter-spacing: -0.2px;
}
.success-balance strong {
color: #495057;
}
.kakao-badge {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 13px;
color: #191919;
background: #FEE500;
padding: 6px 14px;
border-radius: 20px;
font-weight: 600;
margin-bottom: 32px;
}
.button-group {
display: flex;
gap: 12px;
}
.btn-secondary, .btn-primary {
flex: 1;
padding: 16px;
border-radius: 14px;
font-size: 15px;
font-weight: 600;
text-decoration: none;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.2s ease;
letter-spacing: -0.2px;
}
.btn-secondary {
background: #f1f3f5;
color: #495057;
}
.btn-primary {
background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
color: #ffffff;
}
.btn-secondary:active, .btn-primary:active {
transform: scale(0.98);
}
@media (max-width: 480px) {
body { padding: 0; }
.app-container { border-radius: 0; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; }
}
</style>
</head>
<body>
<div class="app-container">
<div class="success-icon-wrap">
<svg viewBox="0 0 52 52">
<path d="M14.1 27.2l7.1 7.2 16.7-16.8"/>
</svg>
</div>
<div class="success-title">적립 완료!</div>
<div class="success-name"><strong>{{ name }}</strong></div>
<div class="success-points">+{{ "{:,}".format(points) }}P</div>
<div class="success-balance">
총 포인트 <strong>{{ "{:,}".format(balance) }}P</strong>
</div>
<div class="kakao-badge">
<svg width="14" height="14" viewBox="0 0 20 20" fill="none">
<path d="M10 1C4.477 1 0 4.477 0 8.5c0 2.58 1.693 4.847 4.243 6.134l-1.084 3.97a.3.3 0 00.457.338L7.7 16.392c.75.112 1.52.17 2.3.17 5.523 0 10-3.477 10-7.562C20 4.477 15.523 1 10 1z" fill="#191919"/>
</svg>
카카오로 적립됨
</div>
<div class="button-group">
<a href="/" class="btn-secondary">홈으로</a>
<a href="/my-page?phone={{ phone }}" class="btn-primary">내역 보기</a>
</div>
</div>
</body>
</html>