Add sprite picker to start game page. Improve styles on verification page. Update global styles.

This commit is contained in:
Chris Wilson
2020-12-04 05:30:03 -05:00
parent 5529f4232b
commit eebaee3030
8 changed files with 118 additions and 17 deletions

View File

@@ -10,9 +10,24 @@
{% include 'header/oceanHeader.html' %}
<div id="check-result-wrapper">
<div id="check-result" class="grass-island">
{% for filename, resulttext in results.items() %}
<span>{{ filename }}: {{ "Looks ok" if resulttext == True else resulttext }}</span><br>
{% endfor %}
<h1>Verification Results</h1>
<p>The results of your requested file check are below.</p>
<table>
<thead>
<tr>
<th>File</th>
<th>Result</th>
</tr>
</thead>
<tbody>
{% for filename, resulttext in results.items() %}
<tr>
<td>{{ filename }}</td>
<td>{{ "Valid" if resulttext == True else resulttext }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
{% include 'islandFooter.html' %}

View File

@@ -11,11 +11,11 @@
{% block body %}
{% include 'header/grassHeader.html' %}
<div id="player-settings">
<h1>Start Game</h1>
<h1>Generate Game</h1>
<p>Choose the options you would like to play with! You may generate a single-player game from this page,
or download a settings file you can use to participate in a MultiWorld. If you would like to make
your settings extra random, check out the <a href="/weighted-settings">weighted settings</a>
page.</p>
page. There, you will find examples of all available sprites as well.</p>
<p><label for="player-name">Please enter your player name. This will appear in-game as you send and receive
items, if you are playing in a MultiWorld.</label><br />