Files
breadcrumb-the-shire/templates/partials/auth-logo.phtml
2026-03-07 21:21:47 +01:00

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>