36 lines
1.4 KiB
HTML
36 lines
1.4 KiB
HTML
{% extends 'pageWrapper.html' %}
|
|
|
|
{% block head %}
|
|
<title>Player Settings</title>
|
|
<link rel="stylesheet" type="text/css" href="{{ static_autoversion("styles/playerSettings.css") }}" />
|
|
<script type="application/ecmascript" src="{{ static_autoversion("assets/playerSettings.js") }}"></script>
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
{% include 'header/grassHeader.html' %}
|
|
<div id="player-settings">
|
|
<h1>Player Settings</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>
|
|
|
|
<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 />
|
|
<input id="player-name" placeholder="Player Name" />
|
|
</p>
|
|
|
|
<h2>Game Options</h2>
|
|
<div id="game-options">
|
|
<div id="game-options-left" class="left"></div>
|
|
<div id="game-options-right" class="right"></div>
|
|
</div>
|
|
|
|
<h2>ROM Options</h2>
|
|
<div id="rom-options">
|
|
<div id="rom-options-left" class="left"></div>
|
|
<div id="rom-options-right" class="right"></div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|