| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 | <!DOCTYPE html><html lang="zh"><head>    <meta charset="UTF-8">    <meta name="viewport" content="width=device-width, initial-scale=1.0">    <title>Forgot password</title>    <style>        body {            font-family: Arial, sans-serif;            background-color: #f4f4f9;            padding: 20px;        }        .container {            background-color: #ffffff;            padding: 30px;            border-radius: 8px;            max-width: 600px;            margin: 0 auto;            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);        }        h1 {            color: #333;            font-size: 24px;            margin-bottom: 20px;        }        .content {            font-size: 16px;            color: #666;            line-height: 1.5;            margin-bottom: 20px;        }        .code {            font-size: 22px;            font-weight: bold;            color: #3e8e41;            margin: 20px 0;            padding: 10px;            background-color: #e7f7e7;            border-radius: 5px;            text-align: center;        }        .footer {            font-size: 14px;            color: #aaa;            text-align: center;        }    </style></head><body><div class="container">    <h1>Forgot password</h1>    <div class="content">        <p>Dear user,</p>        <p>We received a notification of your request to reset your password. To protect your account, please use the following verification code for authentication:</p>        <div class="code">{{ $data['code'] }}</div>        <p>This verification code will be valid for {{ $data['exp'] }} minutes, please use as soon as possible. If you did not initiate this request, please ignore this message.</p>    </div>    <div class="footer">        <p>Thank you for using our service.</p>        <p>This email is sent automatically by the system, please do not reply.</p>    </div></div></body></html>
 |