mirror of
https://github.com/ArchipelagoMW/Archipelago.git
synced 2026-04-06 21:18:13 -07:00
Add sprite picker to start game page. Improve styles on verification page. Update global styles.
This commit is contained in:
@@ -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' %}
|
||||
|
||||
@@ -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 />
|
||||
|
||||
Reference in New Issue
Block a user