Files
squares_game/legacy/footer.inc
T
Philip b4e89ea9ee Initial commit: Next.js rewrite of Super Bowl Squares app
Full rewrite of the legacy PHP/MySQL app using Next.js 14, PostgreSQL,
Prisma, NextAuth, Tailwind CSS, and WebSocket-based live chat/grid updates.
Deployed via Docker Compose with a custom Node.js server for WebSocket support.

Fix chat display names by passing userId from the NextAuth session over
WebSocket instead of attempting to read the HttpOnly session cookie (which
is inaccessible to JavaScript). Server now looks up the user's first name
from the database using the userId.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-02-17 17:34:50 -08:00

20 lines
668 B
PHP

<!--
www.vnlisting.com
Online Super Bowl Squares Script
Please read the "Readme.txt for license agreement, installation and usage instructions
-->
<!-- You may not and shall not make any changes to this file -->
<p>
<table width="95%" style="font-family: verdana, arial; font-size: 9px">
<tr>
<td>Copyright &copy; <?=date("Y")?> <a href="http://www.vnlisting.com/" title="VNLISTING" target="_parent">VNLISTING</a> modified by <a href="http://www.djsplice.com" title="DJSPLICE.COM" target="_parent">djsplice.com</a></td>
<td align="right">SB Squares v.<?=$VERSION?></td>
</tr>
</table>
</p>
</center>
<?php mysqli_close($conn); ?>
</body>
</html>