You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.4 KiB
40 lines
1.4 KiB
<?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> </p>
|
|
<a href="play" class="btn btn-outline-dark btn-lg" role="button" aria-pressed="true">Play Game!</a>
|
|
</div>
|
|
</main>
|
|
|