1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
|
<!-- templates/password-reset.hbs -->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>비밀번호 재설정 | Password Reset</title>
<style>
/* Reset styles */
body, table, td, p, a, li, blockquote {
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
table, td {
mso-table-lspace: 0pt;
mso-table-rspace: 0pt;
}
img {
-ms-interpolation-mode: bicubic;
border: 0;
height: auto;
line-height: 100%;
outline: none;
text-decoration: none;
}
/* Main styles */
body {
margin: 0 !important;
padding: 0 !important;
background-color: #f4f4f4;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
.email-container {
max-width: 600px;
margin: 0 auto;
background-color: #ffffff;
}
.header {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 40px 20px;
text-align: center;
}
.header h1 {
color: #ffffff;
margin: 0;
font-size: 28px;
font-weight: 600;
line-height: 1.4;
}
.logo {
color: #ffffff;
font-size: 24px;
font-weight: bold;
margin-bottom: 10px;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
}
.content {
padding: 40px 30px;
}
.greeting {
font-size: 18px;
color: #333333;
margin-bottom: 20px;
font-weight: 500;
line-height: 1.6;
}
.message {
font-size: 16px;
color: #555555;
line-height: 1.6;
margin-bottom: 30px;
}
.reset-button {
text-align: center;
margin: 30px 0;
}
.reset-button a {
display: inline-block;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: #ffffff !important;
text-decoration: none;
padding: 15px 40px;
border-radius: 6px;
font-weight: 600;
font-size: 16px;
box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
transition: all 0.3s ease;
}
.reset-button a:hover {
background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
transform: translateY(-2px);
}
.warning {
background-color: #fff3cd;
border: 1px solid #ffeaa7;
border-radius: 6px;
padding: 20px;
margin: 30px 0;
}
.warning-title {
color: #856404;
font-weight: 600;
margin-bottom: 8px;
font-size: 16px;
line-height: 1.5;
}
.warning-text {
color: #856404;
font-size: 14px;
line-height: 1.6;
}
.footer {
background-color: #f8f9fa;
padding: 30px;
text-align: center;
border-top: 1px solid #e9ecef;
}
.footer-text {
color: #6c757d;
font-size: 14px;
line-height: 1.5;
margin-bottom: 15px;
}
.support-info {
color: #6c757d;
font-size: 13px;
line-height: 1.5;
}
.support-info a {
color: #667eea;
text-decoration: none;
}
.divider {
height: 1px;
background-color: #e9ecef;
margin: 30px 0;
}
.lang-separator {
margin: 15px 0;
color: #999;
font-size: 14px;
}
/* Mobile responsiveness */
@media only screen and (max-width: 600px) {
.email-container {
width: 100% !important;
}
.content {
padding: 30px 20px !important;
}
.header {
padding: 30px 20px !important;
}
.header h1 {
font-size: 24px !important;
}
.reset-button a {
padding: 12px 30px !important;
font-size: 15px !important;
}
}
</style>
</head>
<body>
<div class="email-container">
<!-- Header -->
<div class="header">
<div class="logo">
🚢 eVCP
</div>
<h1>
비밀번호 재설정<br>
<div class="lang-separator">Password Reset</div>
</h1>
</div>
<!-- Content -->
<div class="content">
<div class="greeting">
안녕하세요, {{userName}}님!<br>
<div class="lang-separator">Hello, {{userName}}!</div>
</div>
<div class="message">
eVCP 계정의 비밀번호 재설정을 요청하셨습니다. 아래 버튼을 클릭하여 새로운 비밀번호를 설정해주세요.<br><br>
You have requested to reset your eVCP account password. Please click the button below to set a new password.
</div>
<div class="reset-button">
<a href="{{resetLink}}" target="_blank">
비밀번호 재설정하기 | Reset Password
</a>
</div>
<div class="warning">
<div class="warning-title">
⚠️ 중요한 보안 안내 | Important Security Notice
</div>
<div class="warning-text">
<strong>한국어:</strong><br>
• 이 링크는 <strong>{{expiryTime}}</strong> 후에 만료됩니다<br>
• 보안을 위해 링크는 한 번만 사용 가능합니다<br>
• 비밀번호 재설정을 요청하지 않으셨다면 이 이메일을 무시하세요<br><br>
<strong>English:</strong><br>
• This link will expire in <strong>{{expiryTime}}</strong><br>
• For security, this link can only be used once<br>
• If you didn't request this reset, please ignore this email
</div>
</div>
<div class="divider"></div>
<div class="message">
버튼이 작동하지 않는 경우, 아래 링크를 복사하여 브라우저에 직접 붙여넣어 주세요:<br><br>
If the button doesn't work, copy and paste the following link into your browser:
</div>
<div style="background-color: #f8f9fa; padding: 15px; border-radius: 4px; word-break: break-all; font-family: monospace; font-size: 13px; color: #495057; margin: 15px 0;">
{{resetLink}}
</div>
</div>
<!-- Footer -->
<div class="footer">
<div class="footer-text">
이 이메일은 eVCP 시스템에서 자동으로 발송되었습니다.<br>
문의사항이 있으시면 고객지원팀에 연락해주세요.<br><br>
This email was sent automatically by the eVCP system.<br>
If you have any questions, please contact our support team.
</div>
<div class="support-info">
지원팀 | Support: <a href="mailto:{{supportEmail}}">{{supportEmail}}</a><br>
© 2024 eVCP. 모든 권리 보유. | All rights reserved.
</div>
</div>
</div>
</body>
</html>
|