mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
Add Start Playing page, clean up /generate page
This commit is contained in:
35
WebHostLib/templates/startPlaying.html
Normal file
35
WebHostLib/templates/startPlaying.html
Normal file
@@ -0,0 +1,35 @@
|
||||
{% extends 'pageWrapper.html' %}
|
||||
|
||||
{% block head %}
|
||||
{{ super() }}
|
||||
<title>Start Playing</title>
|
||||
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename="styles/startPlaying.css") }}" />
|
||||
{% endblock %}
|
||||
|
||||
{% block body %}
|
||||
{% include 'header/oceanHeader.html' %}
|
||||
|
||||
<div id="start-playing-wrapper">
|
||||
<div id="start-playing" class="grass-island {% if rooms %}wider{% endif %}">
|
||||
<h1>Start Playing</h1>
|
||||
<p>
|
||||
To start playing a game, you'll first need to generate a randomized game. You can do that on this
|
||||
website, by clicking the button below labeled 'Generate and Host'.
|
||||
<br /><br />
|
||||
If you have already generated a game and would just like to host it on this site, click the button
|
||||
labeled 'Host Only'
|
||||
<br /><br />
|
||||
If you have no idea what any of that means, don't worry! We have a page full of tutorials for each
|
||||
game that will get you started properly. To get there, click on the button labeled
|
||||
'Tutorials'.
|
||||
</p>
|
||||
<div id="start-playing-button-row">
|
||||
<a href="/uploads"><button>Host Only</button></a>
|
||||
<a href="/generate"><button>Generate and Host</button></a>
|
||||
<a href="/tutorials"><button>Tutorials</button></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{% include 'islandFooter.html' %}
|
||||
{% endblock %}
|
Reference in New Issue
Block a user