login button
Permalink
Hey,
I use a theme with the name "neat".
I the footer of every page appears the name of the website.
But there is also a login button on every page (in the footer)
I don't want that login button there.
But I don't know how to make this disappear.
I suppose it depends on the theme I did use.
thank you
I use a theme with the name "neat".
I the footer of every page appears the name of the website.
But there is also a login button on every page (in the footer)
I don't want that login button there.
But I don't know how to make this disappear.
I suppose it depends on the theme I did use.
thank you
<div class="row"> <div class="col-sm-12 site-colophon"> <span class="copyright">© <?php echo date('Y') . ' ' . h(Config::get('concrete.site')); ?> </span> · <?php // login link or logout form if (!id(new User)->isLoggedIn()) { ?> <a href="<?php echo URL::to('/login')?>"><?php echo t('Log in') ?></a> <?php } else { $token = new Token(); ?> <form class="logout" action="<?php echo URL::to('/login', 'logout') ?>"> <?php id(new Token())->output('logout'); ?>