⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.172
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
/
resources
/
views
/
emails
/
View File Name :
forget_template.blade.php
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>{{ $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="{{ $data['logo'] ?? asset('assets/images/default-logo.png') }}" alt="{{ $data['title']}}"> </div> <!-- Body --> <div class="email-body"> <h2>Password Reset Request</h2> <p>Hello {{ $data['name'] }},</p> <p>We received a request to reset your password for your <strong>{{ $data['title'] }}</strong> account.</p> @if(isset($data['body']) && Str::contains($data['body'], 'http')) @php preg_match('/https?:\/\/[^\s]+/', $data['body'], $matches); $resetLink = $matches[0] ?? '#'; @endphp <p>Please click the button below to reset your password:</p> <p><a href="{{ $resetLink }}" class="btn-reset" target="_blank">Reset Password</a></p> @else <p>{!! $data['body'] !!}</p> @endif <p>If you didn’t request a password reset, you can safely ignore this email.</p> <p>Best regards,<br><strong>Team {{ $data['title'] }}</strong></p> </div> <!-- Footer --> <div class="email-footer"> © {{ date('Y') }} <strong>{{ $data['home_page_title'] }}</strong>. All rights reserved.<br> </div> </div> </body> </html>