Update index.php

This commit is contained in:
deepend-tildeclub 2024-08-17 10:41:52 -06:00 committed by GitHub
parent cea587a65a
commit cc913bad6d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@
<p class="advisory">GMAIL USERS: We no longer accept gmail.com addresses for signups since you would not receive your account information email.</p> <p class="advisory">GMAIL USERS: We no longer accept gmail.com addresses for signups since you would not receive your account information email.</p>
<!-- Active Users Scrolling List --> <!-- Active Users Scrolling List -->
<div class="active-users-container"> <div class="active-users-container">
<h2>Currently Active Users</h2> <h2 style="display: inline;">Currently Active Users:</h2>
<div class="active-users-list"> <div class="active-users-list">
<?php <?php
$activeUsers = json_decode(file_get_contents('online-users.json'), true); $activeUsers = json_decode(file_get_contents('online-users.json'), true);
@ -19,7 +19,7 @@
} }
echo "</ul>"; echo "</ul>";
} else { } else {
echo "<p>No active users at the moment.</p>"; echo "<span>No active users at the moment.</span>";
} }
?> ?>
</div> </div>