- 在 EmailTemplateUtil 中增加了对 email 和 newPassword 的非空校验 - 更新了 notification.html、password-reset.html 和 register-success.html 模板中的条件判断逻辑 - 优化了模板的 HTML 结构和样式,提高了邮件的可读性和美观性
352 lines
9.8 KiB
HTML
352 lines
9.8 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="zh-CN">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>WebSoft账号注册成功</title>
|
||
<style>
|
||
* {
|
||
margin: 0;
|
||
padding: 0;
|
||
box-sizing: border-box;
|
||
}
|
||
|
||
body {
|
||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
|
||
line-height: 1.6;
|
||
color: #333;
|
||
background-color: #f5f5f5;
|
||
}
|
||
|
||
.email-container {
|
||
max-width: 600px;
|
||
margin: 0 auto;
|
||
background-color: #ffffff;
|
||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
||
}
|
||
|
||
.header {
|
||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||
padding: 40px 30px;
|
||
text-align: center;
|
||
color: white;
|
||
}
|
||
|
||
.logo {
|
||
font-size: 32px;
|
||
font-weight: bold;
|
||
margin-bottom: 10px;
|
||
letter-spacing: 2px;
|
||
}
|
||
|
||
.header-subtitle {
|
||
font-size: 16px;
|
||
opacity: 0.9;
|
||
margin-bottom: 20px;
|
||
}
|
||
|
||
.success-icon {
|
||
width: 60px;
|
||
height: 60px;
|
||
background-color: #4CAF50;
|
||
border-radius: 50%;
|
||
margin: 0 auto;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
font-size: 30px;
|
||
}
|
||
|
||
.content {
|
||
padding: 40px 30px;
|
||
}
|
||
|
||
.welcome-title {
|
||
font-size: 24px;
|
||
color: #333;
|
||
margin-bottom: 20px;
|
||
text-align: center;
|
||
}
|
||
|
||
.welcome-message {
|
||
font-size: 16px;
|
||
color: #666;
|
||
margin-bottom: 30px;
|
||
text-align: center;
|
||
line-height: 1.8;
|
||
}
|
||
|
||
.account-info {
|
||
background-color: #f8f9fa;
|
||
border-radius: 8px;
|
||
padding: 25px;
|
||
margin: 30px 0;
|
||
border-left: 4px solid #667eea;
|
||
}
|
||
|
||
.account-info h3 {
|
||
color: #333;
|
||
margin-bottom: 15px;
|
||
font-size: 18px;
|
||
}
|
||
|
||
.info-item {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
padding: 10px 0;
|
||
border-bottom: 1px solid #e9ecef;
|
||
}
|
||
|
||
.info-item:last-child {
|
||
border-bottom: none;
|
||
}
|
||
|
||
.info-label {
|
||
font-weight: 600;
|
||
color: #555;
|
||
min-width: 80px;
|
||
}
|
||
|
||
.info-value {
|
||
color: #333;
|
||
font-family: 'Courier New', monospace;
|
||
background-color: #fff;
|
||
padding: 5px 10px;
|
||
border-radius: 4px;
|
||
border: 1px solid #ddd;
|
||
}
|
||
|
||
.cta-section {
|
||
text-align: center;
|
||
margin: 40px 0;
|
||
}
|
||
|
||
.cta-button {
|
||
display: inline-block;
|
||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||
color: white;
|
||
text-decoration: none;
|
||
padding: 15px 40px;
|
||
border-radius: 25px;
|
||
font-size: 16px;
|
||
font-weight: 600;
|
||
transition: transform 0.2s ease;
|
||
box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
|
||
}
|
||
|
||
.cta-button:hover {
|
||
transform: translateY(-2px);
|
||
box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
|
||
}
|
||
|
||
.features {
|
||
margin: 40px 0;
|
||
}
|
||
|
||
.features h3 {
|
||
text-align: center;
|
||
margin-bottom: 25px;
|
||
color: #333;
|
||
}
|
||
|
||
.feature-grid {
|
||
display: grid;
|
||
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
|
||
gap: 20px;
|
||
}
|
||
|
||
.feature-item {
|
||
text-align: center;
|
||
padding: 20px;
|
||
background-color: #f8f9fa;
|
||
border-radius: 8px;
|
||
}
|
||
|
||
.feature-icon {
|
||
font-size: 24px;
|
||
margin-bottom: 10px;
|
||
}
|
||
|
||
.feature-title {
|
||
font-size: 14px;
|
||
font-weight: 600;
|
||
color: #333;
|
||
margin-bottom: 5px;
|
||
}
|
||
|
||
.feature-desc {
|
||
font-size: 12px;
|
||
color: #666;
|
||
}
|
||
|
||
.footer {
|
||
background-color: #2c3e50;
|
||
color: #ecf0f1;
|
||
padding: 30px;
|
||
text-align: center;
|
||
}
|
||
|
||
.footer-content {
|
||
margin-bottom: 20px;
|
||
}
|
||
|
||
.footer-links {
|
||
margin: 20px 0;
|
||
}
|
||
|
||
.footer-links a {
|
||
color: #3498db;
|
||
text-decoration: none;
|
||
margin: 0 15px;
|
||
font-size: 14px;
|
||
}
|
||
|
||
.footer-links a:hover {
|
||
text-decoration: underline;
|
||
}
|
||
|
||
.copyright {
|
||
font-size: 12px;
|
||
color: #95a5a6;
|
||
margin-top: 20px;
|
||
padding-top: 20px;
|
||
border-top: 1px solid #34495e;
|
||
}
|
||
|
||
.security-notice {
|
||
background-color: #fff3cd;
|
||
border: 1px solid #ffeaa7;
|
||
border-radius: 6px;
|
||
padding: 15px;
|
||
margin: 20px 0;
|
||
color: #856404;
|
||
}
|
||
|
||
.security-notice strong {
|
||
color: #533f03;
|
||
}
|
||
|
||
@media (max-width: 600px) {
|
||
.email-container {
|
||
margin: 0;
|
||
box-shadow: none;
|
||
}
|
||
|
||
.header, .content, .footer {
|
||
padding: 20px;
|
||
}
|
||
|
||
.logo {
|
||
font-size: 24px;
|
||
}
|
||
|
||
.welcome-title {
|
||
font-size: 20px;
|
||
}
|
||
|
||
.feature-grid {
|
||
grid-template-columns: 1fr;
|
||
}
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div class="email-container">
|
||
<!-- Header -->
|
||
<div class="header">
|
||
<div class="logo">WebSoft</div>
|
||
<div class="header-subtitle">企业级数字化解决方案</div>
|
||
<div class="success-icon">✓</div>
|
||
</div>
|
||
|
||
<!-- Content -->
|
||
<div class="content">
|
||
<h1 class="welcome-title">恭喜!账号注册成功</h1>
|
||
<p class="welcome-message">
|
||
欢迎加入WebSoft大家庭!您的账号已成功创建,现在可以开始体验我们的企业级服务了。
|
||
</p>
|
||
|
||
<!-- Account Information -->
|
||
<div class="account-info">
|
||
<h3>📋 您的账号信息</h3>
|
||
<div class="info-item">
|
||
<span class="info-label">用户名:</span>
|
||
<span class="info-value">${username!}</span>
|
||
</div>
|
||
<div class="info-item">
|
||
<span class="info-label">手机号:</span>
|
||
<span class="info-value">${phone!}</span>
|
||
</div>
|
||
<div class="info-item">
|
||
<span class="info-label">登录密码:</span>
|
||
<span class="info-value">${password!}</span>
|
||
</div>
|
||
<% if(has(email)) { %>
|
||
<div class="info-item">
|
||
<span class="info-label">邮箱:</span>
|
||
<span class="info-value">${email!}</span>
|
||
</div>
|
||
<% } %>
|
||
</div>
|
||
|
||
<!-- Security Notice -->
|
||
<div class="security-notice">
|
||
<strong>🔒 安全提醒:</strong> 请妥善保管您的登录信息,建议首次登录后立即修改密码。
|
||
</div>
|
||
|
||
<!-- CTA Button -->
|
||
<div class="cta-section">
|
||
<a href="https://www.gxwebsoft.com/login" class="cta-button">立即登录体验</a>
|
||
</div>
|
||
|
||
<!-- Features -->
|
||
<div class="features">
|
||
<h3>🚀 开始探索WebSoft的强大功能</h3>
|
||
<div class="feature-grid">
|
||
<div class="feature-item">
|
||
<div class="feature-icon">📊</div>
|
||
<div class="feature-title">数据分析</div>
|
||
<div class="feature-desc">智能数据洞察</div>
|
||
</div>
|
||
<div class="feature-item">
|
||
<div class="feature-icon">🔧</div>
|
||
<div class="feature-title">系统管理</div>
|
||
<div class="feature-desc">高效运营管理</div>
|
||
</div>
|
||
<div class="feature-item">
|
||
<div class="feature-icon">👥</div>
|
||
<div class="feature-title">团队协作</div>
|
||
<div class="feature-desc">无缝团队合作</div>
|
||
</div>
|
||
<div class="feature-item">
|
||
<div class="feature-icon">🛡️</div>
|
||
<div class="feature-title">安全保障</div>
|
||
<div class="feature-desc">企业级安全</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Footer -->
|
||
<div class="footer">
|
||
<div class="footer-content">
|
||
<strong>南宁网宿信息科技有限公司</strong><br>
|
||
专业的企业数字化转型服务商
|
||
</div>
|
||
|
||
<div class="footer-links">
|
||
<a href="https://www.gxwebsoft.com">官方网站</a>
|
||
<a href="https://www.gxwebsoft.com/help">帮助中心</a>
|
||
<a href="https://www.gxwebsoft.com/contact">联系我们</a>
|
||
</div>
|
||
|
||
<div class="copyright">
|
||
© 2024 南宁网宿信息科技有限公司 版权所有<br>
|
||
如有疑问,请联系客服:170083662@qq.com
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</body>
|
||
</html>
|