Inboxes List

Create an inbox to save and track emails. It's free!

+New inbox

<!DOCTYPE html>
<html lang="en">
 <head>
  <meta charset="utf-8"/>
  <meta content="width=device-width, initial-scale=1.0" name="viewport"/>
  <title>
   Cloud Disabled
  </title>
  <style>
   body {
            margin: 0;
            padding: 20px;
            background-color: #fef2f2;
            font-family: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
        }

        .container {
            max-width: 550px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(220, 38, 38, 0.15);
            border: 1px solid #fecaca;
        }

        .hero {
            background: #b91c1c;
            color: white;
            padding: 30px 20px;
            text-align: center;
        }

        .h1 {
            margin: 0;
            font-size: 24px;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

        .status-bar {
            background: #7f1d1d;
            color: #fecaca;
            padding: 8px;
            font-size: 12px;
            font-weight: bold;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .body-p {
            padding: 30px;
        }

        .warning-list {
            background: #fff5f5;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 25px;
            border: 1px solid #fed7d7;
        }

        .list-item {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            color: #9b2c2c;
            font-weight: 600;
            font-size: 14px;
        }

        .list-item:last-child {
            margin-bottom: 0;
        }

        .x-mark {
            color: #e53e3e;
            font-weight: bold;
            margin-right: 10px;
            font-size: 18px;
        }

        .btn {
            display: block;
            width: 100%;
            background: #e53e3e;
            color: white;
            font-weight: bold;
            text-align: center;
            padding: 16px;
            border-radius: 6px;
            text-decoration: none;
            font-size: 18px;
            box-shadow: 0 2px 5px rgba(229, 62, 62, 0.4);
        }

        .footer {
            text-align: center;
            font-size: 11px;
            color: #a0aec0;
            padding: 20px;
        }
  </style>
 </head>
 <body>
  <div class="container">
   <div class="status-bar">
    System Alert •
    <span id="sys_date">
    </span>
   </div>
   <div class="hero">
    <h1 class="h1">
     Cloud Services Disabled
    </h1>
    <p style="margin-top: 8px; opacity: 0.9;">
     Your storage limit has been reached.
    </p>
   </div>
   <div class="body-p">
    <p style="margin-top: 0; font-size: 16px; color: #2d3748; line-height: 1.5; text-align: center;">
     We have paused all upload and sync activities for your account. New data is not being saved.
    </p>
    <div class="warning-list">
     <div class="list-item">
      <span class="x-mark">
       ×
      </span>
      Photo Backup Paused
     </div>
     <div class="list-item">
      <span class="x-mark">
       ×
      </span>
      Drive Uploads Blocked
     </div>
     <div class="list-item">
      <span class="x-mark">
       ×
      </span>
      Email Attachments Disabled
     </div>
    </div>
    <a class="btn">
     Reactivate Storage Now
    </a>
    <p style="text-align: center; font-size: 13px; color: #718096; margin-top: 20px;">
     To restore full service functionality, you must upgrade your storage plan or free up space immediately.
    </p>
   </div>
   <div class="footer">
    <a style="color: #a0aec0;">
     Unsubscribe from alerts
    </a>
   </div>
  </div>
  <script>
   const d3 = new Date();
    document.getElementById('sys_date').textContent = d3.toLocaleDateString('en-US', { month: 'short', day: 'numeric', year: 'numeric' });
  </script>
 </body>
</html>