新版仿ok交易所-后端
1
zyy
2025-12-22 4363803b4107bb7698391de0867236ce553e8f50
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
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Email Verification Code</title>
    <style>
        /* 内联样式确保邮件客户端兼容 */
        .code-box {
            display: inline-block;
            background-color: #000;   /* 黑色背景 */
            color: #fff;              /* 白色字体 */
            padding: 10px 20px;       /* 内边距 */
            border-radius: 10px;       /* 圆角 */
            font-size: 20px;          /* 字体大小 */
            font-weight: bold;        /* 加粗 */
        }
    </style>
</head>
<body>
<p>Thank you for creating a FracTionxEX account.</p>
<p>Please enter the following verification code to complete your registration:</p>
 
<!-- 带样式的验证码 -->
<div class="code-box">${code}</div>
 
<p>This code is valid for 10 minutes. Please do not share it with anyone. If this was not requested by you, please contact our customer support team immediately.</p>
<p style="text-align: right; margin-top: 30px;">— The FracTionxEX Team</p>
</body>
</html>