<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Your Account Has Been Blocked</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f7f7f7;
            margin: 0;
            padding: 0;
        }

        .container {
            width: 100%;
            max-width: 600px;
            margin: 0 auto;
            background-color: #ffffff;
            padding: 20px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        .content {
            margin-top: 20px;
        }

        .footer {
            margin-top: 30px;
            font-size: 0.9em;
            color: #777;
        }
    </style>
</head>

<body>
    <div class="container">

        <div class="logo-container" style="text-align: center;">
            <a href="#">
                <img style="width: 70px;" id="logo"
                    src="https://demoprojectsbucket.sgp1.digitaloceanspaces.com/uploads/icon-192.png" width="70"
                    alt="" />
            </a>
        </div>
        <p>Dear {{user}},</p>

        <div class="content">
            <p>We regret to inform you that your account has been blocked by the admin. The reason for this action is as
                follows:</p>

            {{!-- <blockquote>
                {{reason}}
            </blockquote> --}}

            <p>• <strong>{{reason}}</strong></p>

            <p>Please contact our support team if you have any questions or need further assistance.</p>

            <p>Best regards,<br>
                Go Cabbie</p>
        </div>

        <div class="footer">
            <p>This is an automated message; please do not reply to this email. If you have any questions, contact our
                support team.</p>
        </div>
    </div>
</body>

</html>