First Local Commit - After Clean up.

Signed-off-by: Rick Hays <rhays@haysgang.com>
This commit is contained in:
2019-12-02 14:54:38 -06:00
commit 10412ab7f6
486 changed files with 123242 additions and 0 deletions

40
app/Views/game.php Normal file
View File

@@ -0,0 +1,40 @@
<?php namespace App\Views;
/******************************************************************************************************************
* RPSLS - Rock, Paper, Scissors, Lizard, Spock Game
*
* @file app/views/game.php
* @package App\Views
* @description
* View - Opening (Main) Page for program.
* @author Rick Hays
* @date 11/15/2019
* @license MIT
* @copyright Copyright © 2019 - Rick Hays, All Rights Reserved.
*
* Revisions:
* YYYY-MM-DD XX Description
******************************************************************************************************************/
?>
<!-- Begin page content -->
<main role="main" class="flex-shrink-0">
<div class="container">
<h1 class="mt-5">Rock, Paper, Scissors, Lizard, Spock Game</h1>
<p class="lead">Try your luck at how many times you can beat the computer.</p>
<img src="assets/imgs/rpsls.gif">
<p>Here are the rules:</p>
<ul>
<li>Rock crushes lizard</li>
<li>Rock crushes scissors</li>
<li>Paper covers rock</li>
<li>Paper disproves Spock</li>
<li>Scissors cuts paper</li>
<li>Scissors decapitates lizard</li>
<li>Lizard poisons Spock</li>
<li>Lizard eats paper</li>
<li>Spock smashes scissors</li>
<li>Spock vaporizes rock</li>
</ul>
<p>&nbsp;</p>
<a href="play" class="btn btn-outline-dark btn-lg" role="button" aria-pressed="true">Play Game!</a>
</div>
</main>