added cs logo

This commit is contained in:
Russell R. 2021-07-31 23:53:29 -04:00
parent 68f6eeaf46
commit fba03c76f7
3 changed files with 7 additions and 3 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

BIN
cspin/cslogo.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

View File

@ -11,10 +11,12 @@ $game = $games[array_rand($games)];
</head>
<body id="top">
<main>
<h1>The Coin Slot - Pinball Picker</h1>
<img src="cslogo.png" alt="CS Logo">
<center><h1>The Coin Slot - Pinball Picker</h1></center>
<p>reload the page to pick a table</p>
<ul>
<p>reload the page, or press Ready Player 1 button to pick another game</p>
<center><button onClick="history.go(0);">Ready Player 1</button></center>
<ul>
<?php foreach ($games as $g) {
if ($g === $game) { ?>
<li><strong><mark><?=$g?></mark></strong></li>
@ -23,6 +25,8 @@ $game = $games[array_rand($games)];
<?php }
} ?>
</ul>
<p>*if the pinball game picked for your team is not working, just reload the page and have another game picked for you</p>
<hr>
<p>created by Ben H. Modified by Russ R.</p>
</main>