diff --git a/public/index.php b/public/index.php
index 429a35e9b0c353f0f2ca69a8005dede9772a1b88..66c69bd788d022c87f5b5eeba12d8c4c2a1f4a87 100644
--- a/public/index.php
+++ b/public/index.php
@@ -95,19 +95,10 @@ foreach ($portalplugins as $portalplugin) {
 
 
 $index_nobody_template = $GLOBALS['template_factory']->open('index_nobody');
-$cache = StudipCacheFactory::getCache();
-$stat = $cache->read('LOGINFORM_STATISTICS');
-if (!is_array($stat)) {
-    $stat = [];
-    $stat['num_active_courses'] = Course::countBySQL();
-    $stat['num_registered_users'] = User::countBySQL();
-    $cache->write('LOGINFORM_STATISTICS', $stat, 3600);
-}
-$index_nobody_template->set_attributes(array_merge($stat, [
-    'num_online_users' => get_users_online_count(),
+$index_nobody_template->set_attributes([
     'plugin_contents'  => $plugin_contents,
     'logout'           =>  Request::bool('logout'),
-]));
+]);
 
 echo $index_nobody_template->render();
 
diff --git a/templates/index_nobody.php b/templates/index_nobody.php
index f687775d527308adbd8c1bec1f09cb34dc569e79..8376cb73390f4e87032ce3e79f28cb7a3dda56a3 100644
--- a/templates/index_nobody.php
+++ b/templates/index_nobody.php
@@ -1,8 +1,5 @@
 <?php
 /**
- * @var int $num_active_courses
- * @var int $num_registered_users
- * @var int $num_online_users
  * @var bool $logout
  * @var string[] $plugin_contents
  */
@@ -85,29 +82,6 @@ if ($bg_mobile) {
                 <? endif ?>
 
             </div>
-
-            <div class="login_info">
-                <div>
-                    <?= _('Aktive Veranstaltungen') ?>:
-                    <?= number_format($num_active_courses, 0, ',', '.') ?>
-                </div>
-
-                <div>
-                    <?= _('Registrierte NutzerInnen') ?>:
-                    <?= number_format($num_registered_users, 0, ',', '.') ?>
-                </div>
-
-                <div>
-                    <?= _('Davon online') ?>:
-                    <?= number_format($num_online_users, 0, ',', '.') ?>
-                </div>
-
-                <div>
-                    <a href="dispatch.php/siteinfo/show">
-                        <?= _('mehr') ?> &hellip;
-                    </a>
-                </div>
-            </div>
         </footer>
     </article>