⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.152
Server IP:
13.200.189.69
Server:
Linux ip-172-31-46-210 5.15.0-1084-aws #91~20.04.1-Ubuntu SMP Fri May 2 06:59:36 UTC 2025 x86_64
Server Software:
Apache/2.4.41 (Ubuntu)
PHP Version:
7.4.3-4ubuntu2.29
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
styleage_v3
/
core
/
storage
/
framework
/
views
/
View File Name :
745297b93c6fda0dc871624df45a4f42a6aa691f.php
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>IndianFactory - Verification Email</title> <style> body { background-color: #f4f4f4; font-family: 'Segoe UI', Arial, sans-serif; margin: 0; padding: 0; } .email-container { max-width: 600px; margin: 30px auto; background-color: #ffffff; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.1); } .email-header { background-color: #5A31F4; /* purple tone */ padding: 20px; text-align: center; } .email-header img { width: 150px; height: auto; } .email-body { padding: 30px; color: #333333; line-height: 1.6; } .email-body h2 { color: #5A31F4; } .otp-box { font-size: 22px; font-weight: bold; color: #ffffff; background: #5A31F4; padding: 10px 20px; display: inline-block; border-radius: 5px; margin: 15px 0; } .email-footer { background-color: #f8f8f8; text-align: center; padding: 15px; font-size: 13px; color: #666666; border-top: 1px solid #e5e5e5; } a { color: #5A31F4; text-decoration: none; } </style> </head> <body> <div class="email-container"> <!-- Header --> <div class="email-header"> <img src="<?php echo e($data['logo']); ?>" alt="<?php echo e($data['title']); ?>"> </div> <!-- Body --> <div class="email-body"> <?php if(isset($data['type'])): ?> <?php echo $data['body']; ?> <?php else: ?> <h2>Hello <?php echo e($data['name']); ?>,</h2> <p>Thank you for being a part of <strong><?php echo e($data['title']); ?></strong>.</p> <p>Use the following verification code to complete your registration:</p> <div class="otp-box"><?php echo e($data['code']); ?></div> <p>If you didn’t request this, please ignore this email.</p> <?php endif; ?> <p>Best regards,<br><strong>Team <?php echo e($data['title']); ?></strong></p> </div> <!-- Footer --> <div class="email-footer"> © <?php echo e(date('Y')); ?> <strong><?php echo e($data['home_page_title']); ?></strong>. All rights reserved. <br> </div> </div> </body> </html> <?php /**PATH /var/www/styleage_v3/core/resources/views/emails/template.blade.php ENDPATH**/ ?>