11 lines
207 B
PHTML
11 lines
207 B
PHTML
<?php
|
|
|
|
$authLogoUrl = appLogoUrl();
|
|
if ($authLogoUrl === '') {
|
|
return;
|
|
}
|
|
?>
|
|
<div class="login-logo">
|
|
<img src="<?php e($authLogoUrl); ?>" alt="<?php e(appTitle()); ?>" class="login-logo-img">
|
|
</div>
|