175 lines
5.2 KiB
HTML
175 lines
5.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
|
|
line-height: 1.6;
|
|
color: #1a1a1a;
|
|
background-color: #f5f5f5;
|
|
padding: 40px 20px;
|
|
}
|
|
.email-wrapper {
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
background-color: #ffffff;
|
|
border-radius: 12px;
|
|
overflow: hidden;
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
|
|
}
|
|
.header {
|
|
background-color: #000000;
|
|
padding: 32px 40px;
|
|
text-align: center;
|
|
}
|
|
.header-logo {
|
|
font-size: 28px;
|
|
font-weight: 700;
|
|
color: #ffffff;
|
|
letter-spacing: -0.5px;
|
|
}
|
|
.content {
|
|
padding: 40px;
|
|
}
|
|
.greeting {
|
|
font-size: 16px;
|
|
color: #1a1a1a;
|
|
margin-bottom: 24px;
|
|
}
|
|
.message {
|
|
font-size: 15px;
|
|
color: #4a4a4a;
|
|
margin-bottom: 32px;
|
|
line-height: 1.7;
|
|
}
|
|
.invite-section {
|
|
background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
|
|
border: 1px solid #e5e5e5;
|
|
border-radius: 8px;
|
|
padding: 32px;
|
|
text-align: center;
|
|
margin: 32px 0;
|
|
}
|
|
.invite-label {
|
|
font-size: 13px;
|
|
color: #666666;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
margin-bottom: 12px;
|
|
font-weight: 500;
|
|
}
|
|
.invite-code {
|
|
font-size: 32px;
|
|
font-weight: 700;
|
|
color: #000000;
|
|
letter-spacing: 3px;
|
|
margin: 16px 0;
|
|
font-family: 'Courier New', monospace;
|
|
}
|
|
.expiry-info {
|
|
font-size: 14px;
|
|
color: #666666;
|
|
margin-top: 16px;
|
|
}
|
|
.divider {
|
|
height: 1px;
|
|
background-color: #e5e5e5;
|
|
margin: 24px 0;
|
|
}
|
|
.cta-section {
|
|
text-align: center;
|
|
margin: 32px 0;
|
|
}
|
|
.cta-button {
|
|
display: inline-block;
|
|
padding: 14px 48px;
|
|
background-color: #000000;
|
|
color: #ffffff;
|
|
text-decoration: none;
|
|
border-radius: 6px;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
}
|
|
.notice-box {
|
|
background-color: #fafafa;
|
|
border-left: 3px solid #4a4a4a;
|
|
padding: 16px 20px;
|
|
margin-top: 32px;
|
|
border-radius: 0 4px 4px 0;
|
|
}
|
|
.notice-box p {
|
|
font-size: 14px;
|
|
color: #4a4a4a;
|
|
margin: 4px 0;
|
|
}
|
|
.footer {
|
|
background-color: #fafafa;
|
|
padding: 32px 40px;
|
|
text-align: center;
|
|
border-top: 1px solid #e5e5e5;
|
|
}
|
|
.footer-brand {
|
|
font-size: 14px;
|
|
color: #1a1a1a;
|
|
font-weight: 600;
|
|
margin-bottom: 8px;
|
|
}
|
|
.footer-contact {
|
|
font-size: 13px;
|
|
color: #666666;
|
|
margin-top: 8px;
|
|
}
|
|
.footer-contact a {
|
|
color: #000000;
|
|
text-decoration: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="email-wrapper">
|
|
<div class="header">
|
|
<div class="header-logo">GoalfyAI</div>
|
|
</div>
|
|
|
|
<div class="content">
|
|
<div class="greeting">您好,</div>
|
|
|
|
<div class="message">
|
|
恭喜!您的 GoalfyAI 账户申请已获批准。我们很高兴为您提供专属邀请码,与您共建智能任务协作系统。
|
|
</div>
|
|
|
|
<div class="invite-section">
|
|
<div class="invite-label">您的专属邀请码</div>
|
|
<div class="invite-code">GFY-ZAE9PWEH-B3VR</div>
|
|
<div class="divider" style="margin: 20px auto; width: 60%; background-color: #e5e5e5;"></div>
|
|
<div class="expiry-info">有效期至 2025-11-07 23:59:59</div>
|
|
</div>
|
|
|
|
<div class="cta-section">
|
|
<a href="https://passport.goalfy.ai/invite/GFY-ZAE9PWEH-B3VR" class="cta-button">立即注册账户</a>
|
|
</div>
|
|
|
|
<div class="notice-box">
|
|
<p><strong>重要提示</strong></p>
|
|
<p style="margin-top: 8px;">• 此邀请码仅限使用一次</p>
|
|
<p>• 请在有效期内完成注册</p>
|
|
<p>• 注册链接将在点击后自动填充邀请码</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="footer">
|
|
<div class="footer-brand">GoalfyAI 团队</div>
|
|
<div class="footer-contact">
|
|
有任何问题?联系我们:<a href="mailto:goalfymax@goalfyai.com">goalfymax@goalfyai.com</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |