⚝
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 :
template.blade.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="{{ $data['logo'] }}" alt="{{ $data['title'] }}"> </div> <!-- Body --> <div class="email-body"> @if(isset($data['type'])) {!! $data['body'] !!} @else <h2>Hello {{ $data['name'] }},</h2> <p>Thank you for being a part of <strong>{{ $data['title'] }}</strong>.</p> <p>Use the following verification code to complete your registration:</p> <div class="otp-box">{{ $data['code'] }}</div> <p>If you didn’t request this, please ignore this email.</p> @endif <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>