Files
breadcrumb-the-shire/templates/partials/auth-logo.phtml

18 lines
573 B
PHTML
Raw Normal View History

2026-03-07 21:21:47 +01:00
<?php
$authLogoUrl = appAuthLogoUrl();
2026-03-07 21:21:47 +01:00
if ($authLogoUrl === '') {
return;
}
$authLogoHref = isset($authLogoHref) && is_string($authLogoHref) ? trim($authLogoHref) : '';
2026-03-07 21:21:47 +01:00
?>
<div class="login-logo">
<?php if ($authLogoHref !== ''): ?>
<a href="<?php e($authLogoHref); ?>" class="login-logo-link">
<img src="<?php e($authLogoUrl); ?>" alt="<?php e(appTitle()); ?>" class="login-logo-img">
</a>
<?php else: ?>
<img src="<?php e($authLogoUrl); ?>" alt="<?php e(appTitle()); ?>" class="login-logo-img">
<?php endif; ?>
2026-03-07 21:21:47 +01:00
</div>