95 lines
3.1 KiB
PHP
95 lines
3.1 KiB
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ get_phrase('Instructor Application Approved') }}</title>
|
|
<style>
|
|
/* Copy the same styles from your email.blade.php */
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f9f9f9;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.email-container {
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
background-color: #ffffff;
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
}
|
|
.email-header {
|
|
background-color: #ffffff;
|
|
color: #000;
|
|
text-align: center;
|
|
padding: 20px;
|
|
font-size: 24px;
|
|
font-weight: bold;
|
|
}
|
|
.email-body {
|
|
padding: 20px;
|
|
color: #333333;
|
|
font-size: 16px;
|
|
line-height: 1.6;
|
|
}
|
|
.email-body .button-container {
|
|
text-align: center;
|
|
margin: 20px 0;
|
|
}
|
|
.email-body a.button {
|
|
display: inline-block;
|
|
background-color: #2f57ef;
|
|
color: white;
|
|
padding: 12px 24px;
|
|
text-decoration: none;
|
|
border-radius: 5px;
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
}
|
|
.email-footer {
|
|
background-color: #f0f3ff;
|
|
color: #2f57ef;
|
|
text-align: center;
|
|
padding: 10px;
|
|
font-size: 14px;
|
|
border-top: 1px solid #dddddd;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="email-container">
|
|
<div class="email-header">
|
|
{{ get_phrase('Instructor Application Approved') }}
|
|
</div>
|
|
<div class="email-body">
|
|
<p><strong>{{ get_phrase('Congratulations') }} {{ $user->name }}!</strong></p>
|
|
<p>{{ get_phrase('We are pleased to inform you that your instructor application has been approved.') }}</p>
|
|
<p><strong>{{ get_phrase('Application ID') }}:</strong> {{ $application->id }}</p>
|
|
|
|
<p>{{ get_phrase('You now have access to') }}:</p>
|
|
<ul>
|
|
<li>{{ get_phrase('Instructor Dashboard') }}</li>
|
|
<li>{{ get_phrase('Course Creation Tools') }}</li>
|
|
<li>{{ get_phrase('Bootcamp Creation Tools') }}</li>
|
|
<li>{{ get_phrase('Blog Creation Tools') }}</li>
|
|
<li>{{ get_phrase('Revenue Tracking and Analytics') }}</li>
|
|
</ul>
|
|
|
|
<div class="button-container">
|
|
<a href="{{ url('/instructor/dashboard') }}" class="button">
|
|
{{ get_phrase('Access Instructor Dashboard') }}
|
|
</a>
|
|
</div>
|
|
|
|
<p>{{ get_phrase('If you have any questions, please contact our support team.') }}</p>
|
|
<p>{{ get_phrase('Thank you for joining our instructor community!') }}</p>
|
|
</div>
|
|
<div class="email-footer">
|
|
<p>{{ config('app.name') }}</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|