- 간편 적립: 전화번호 + 이름만으로 QR 적립 - 자동 회원 가입: 신규 사용자 자동 등록 - 마이페이지: 포인트 조회 및 적립 내역 확인 - 관리자 페이지: 전체 사용자/적립 현황 대시보드 - 거래 세부 조회 API: MSSQL 연동으로 판매 상품 상세 확인 - 모던 UI: Noto Sans KR 폰트, 반응형 디자인 - 포트: 7001 (리버스 프록시: https://mile.0bin.in) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
95 lines
2.8 KiB
HTML
95 lines
2.8 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;
|
|
}
|
|
|
|
.error-container {
|
|
background: #ffffff;
|
|
border-radius: 24px;
|
|
padding: 48px 32px;
|
|
max-width: 420px;
|
|
width: 100%;
|
|
text-align: center;
|
|
box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
|
|
}
|
|
|
|
.error-icon {
|
|
width: 80px;
|
|
height: 80px;
|
|
margin: 0 auto 24px auto;
|
|
background: linear-gradient(135deg, #f03e3e 0%, #d6336c 100%);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 40px;
|
|
}
|
|
|
|
.error-title {
|
|
color: #212529;
|
|
font-size: 24px;
|
|
font-weight: 700;
|
|
margin-bottom: 16px;
|
|
letter-spacing: -0.5px;
|
|
}
|
|
|
|
.error-message {
|
|
color: #868e96;
|
|
font-size: 15px;
|
|
font-weight: 500;
|
|
line-height: 1.6;
|
|
margin-bottom: 32px;
|
|
letter-spacing: -0.2px;
|
|
}
|
|
|
|
.btn-home {
|
|
display: inline-block;
|
|
padding: 16px 32px;
|
|
background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
|
|
color: #ffffff;
|
|
text-decoration: none;
|
|
border-radius: 14px;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
letter-spacing: -0.2px;
|
|
transition: all 0.2s ease;
|
|
box-shadow: 0 4px 16px rgba(99, 102, 241, 0.24);
|
|
}
|
|
|
|
.btn-home:active {
|
|
transform: scale(0.98);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="error-container">
|
|
<div class="error-icon">⚠️</div>
|
|
<div class="error-title">문제가 발생했어요</div>
|
|
<div class="error-message">{{ message }}</div>
|
|
<a href="/" class="btn-home">홈으로 이동</a>
|
|
</div>
|
|
</body>
|
|
</html>
|