Initial change of theme.
Only themed pages currently are login and reset password pages.
This commit is contained in:
parent
16a3514abf
commit
457ed28b0b
119 changed files with 758 additions and 1703 deletions
22
resources/themes/pterodactyl/vendor/notifications/email-plain.blade.php
vendored
Normal file
22
resources/themes/pterodactyl/vendor/notifications/email-plain.blade.php
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
<?php
|
||||
|
||||
if (! empty($greeting)) {
|
||||
echo $greeting, "\n\n";
|
||||
} else {
|
||||
echo $level == 'error' ? 'Whoops!' : 'Hello!', "\n\n";
|
||||
}
|
||||
|
||||
if (! empty($introLines)) {
|
||||
echo implode("\n", $introLines), "\n\n";
|
||||
}
|
||||
|
||||
if (isset($actionText)) {
|
||||
echo "{$actionText}: {$actionUrl}", "\n\n";
|
||||
}
|
||||
|
||||
if (! empty($outroLines)) {
|
||||
echo implode("\n", $outroLines), "\n\n";
|
||||
}
|
||||
|
||||
echo 'Regards,', "\n";
|
||||
echo Settings::get('company'), "\n";
|
Reference in a new issue