文章详情
1.可以根据自己的需求进行修改
2.修改完成后可以在后台配置就可以
<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>登录成功通知</title>
    <style>
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 600px;
            margin: 0 auto;
            padding: 20px;
        }
        .header {
            border-bottom: 2px solid #2196F3;
            padding-bottom: 10px;
            margin-bottom: 25px;
        }
        .title {
            color: #2c3e50;
            font-size: 20px;
            margin: 0;
        }
        .info-box {
            background-color: #f8f9fa;
            border-left: 4px solid #2196F3;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 4px 4px 0;
        }
        .info-item {
            margin: 10px 0;
            display: flex;
        }
        .info-label {
            font-weight: bold;
            min-width: 100px;
            color: #555;
        }
        .info-value {
            color: #222;
            flex: 1;
        }
        .footer {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #eee;
            font-size: 14px;
            color: #666;
        }
        .highlight {
            color: #2196F3;
            font-weight: bold;
        }
        .success-highlight {
            color: #4CAF50;
            font-weight: bold;
            background-color: #E8F5E9;
            padding: 2px 6px;
            border-radius: 3px;
        }
        .action-badge {
            display: inline-block;
            background-color: #2196F3;
            color: white;
            padding: 2px 8px;
            border-radius: 3px;
            font-size: 12px;
            margin-left: 5px;
        }
        .security-box {
            background-color: #E3F2FD;
            border: 1px solid #90CAF9;
            border-radius: 4px;
            padding: 15px;
            margin: 20px 0;
        }
        .security-title {
            color: #1565C0;
            font-weight: bold;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        .security-title:before {
            content: "🔐";
            margin-right: 8px;
        }
        .status-badge {
            display: inline-block;
            background-color: #4CAF50;
            color: white;
            padding: 2px 8px;
            border-radius: 3px;
            font-size: 12px;
            margin-left: 8px;
            font-weight: bold;
        }
        .warning-note {
            background-color: #FFF3E0;
            border: 1px dashed #FFB74D;
            border-radius: 4px;
            padding: 12px;
            margin: 15px 0;
            font-size: 14px;
        }
        .warning-title {
            color: #FF9800;
            font-weight: bold;
            margin-bottom: 5px;
        }
    </style>
</head>
<body>
    <div class="header">
        <h1 class="title">登录成功通知 <span class="action-badge">安全登录</span></h1>
    </div>
    
    <p>尊敬的 <span class="highlight">{user}</span>,您好!</p>
    
    <p>您的账户登录成功。以下是本次登录的详细信息:</p>
    
    <div class="info-box">
        <div class="info-item">
            <div class="info-label">登录账户</div>
            <div class="info-value">{user}</div>
        </div>
        <div class="info-item">
            <div class="info-label">登录状态</div>
            <div class="info-value success-highlight">
                登录成功
                <span class="status-badge">已验证</span>
            </div>
        </div>
        <div class="info-item">
            <div class="info-label">登录时间</div>
            <div class="info-value">{loginTime}</div>
        </div>
        <div class="info-item">
            <div class="info-label">登录IP</div>
            <div class="info-value">{loginIP}</div>
        </div>
        <div class="info-item">
            <div class="info-label">登录设备</div>
            <div class="info-value">{deviceInfo}</div>
        </div>
        <div class="info-item">
            <div class="info-label">登录地点</div>
            <div class="info-value">{location}</div>
        </div>
    </div>
    
    <div class="security-box">
        <div class="security-title">安全提示</div>
        <p>1. 本次登录已通过安全验证,登录信息正常</p>
        <p>2. 如登录信息与您的实际情况不符,请立即修改密码</p>
        <p>3. 建议定期更新密码,确保账户安全</p>
        <p>4. 请勿在公共设备上保存登录信息</p>
    </div>
    
    <div class="warning-note">
        <div class="warning-title">⚠️ 重要提醒</div>
        <p>如果您未进行此登录操作,或发现登录信息异常,请立即:<br/>
        1. 修改账户密码<br/>
        2. 开启双重验证<br/>
        3. 联系客服冻结账户</p>
    </div>
    
    <p>感谢您使用我们的服务,祝您使用愉快!</p>
    
    <div class="footer">
        <p>此邮件为系统自动发送,请勿直接回复</p>
        <p>如有疑问,请联系客服中心</p>
        <p><strong>幻影二级域名分发系统</strong></p>
    </div>
</body>
</html>

微信扫一扫

支付宝扫一扫

版权:

转载请注明出处:https://www.52hyjs.com/158.html

相关推荐
注册成功通知模板代码
1.可以根据自己的需求进行修改2.修改完成后可以在后台配置就可以 <!DOCTYPE html> <html lang="…
账号登录成功通知模板代码
1.可以根据自己的需求进行修改2.修改完成后可以在后台配置就可以 <!DOCTYPE html> <html lang="…
暂停域名解析通知模板代码
1.可以根据自己的需求进行修改2.修改完成后可以在后台配置就可以 <!DOCTYPE html> <html lang="…
恢复域名解析通知模板代码
1.可以根据自己的需求进行修改2.修改完成后可以在后台配置就可以 <!DOCTYPE html> <html lang="…
域名解析到期提醒模板代码
1.可以根据自己的需求进行修改2.修改完成后可以在后台配置就可以 <!DOCTYPE html> <html lang="…
删除域名解析通知模板代码
1.可以根据自己的需求进行修改2.修改完成后可以在后台配置就可以 <!DOCTYPE html> <html lang="…
发表评论
暂无评论

还没有评论呢,快来抢沙发~

点击联系客服

在线时间:8:00-16:00

客服QQ

419437697

客服电话

400-888-8888

客服邮箱

admin@52hyjs.com