⚝
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 :
916108b71ad39cc888e9278fd84e2c8b92f0377d.php
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title><?php echo e($data['title'] ?? 'Styleage'); ?> - Password Reset</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: #3743d5; /* 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: #3743d5; } .btn-reset { display: inline-block; background-color: #3743d5; color: #ffffff!important; padding: 12px 25px; border-radius: 5px; text-decoration: none; font-weight: bold; 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: #3743d5; text-decoration: none; } </style> </head> <body> <div class="email-container"> <!-- Header --> <div class="email-header"> <img src="<?php echo e($data['logo'] ?? asset('assets/images/default-logo.png')); ?>" alt="<?php echo e($data['title']); ?>"> </div> <!-- Body --> <div class="email-body"> <h2>Password Reset Request</h2> <p>Hello <?php echo e($data['name']); ?>,</p> <p>We received a request to reset your password for your <strong><?php echo e($data['title']); ?></strong> account.</p> <?php if(isset($data['body']) && Str::contains($data['body'], 'http')): ?> <?php preg_match('/https?:\/\/[^\s]+/', $data['body'], $matches); $resetLink = $matches[0] ?? '#'; ?> <p>Please click the button below to reset your password:</p> <p><a href="<?php echo e($resetLink); ?>" class="btn-reset" target="_blank">Reset Password</a></p> <?php else: ?> <p><?php echo $data['body']; ?></p> <?php endif; ?> <p>If you didn’t request a password reset, you can safely ignore this email.</p> <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/forget_template.blade.php ENDPATH**/ ?>