13 lines
349 B
PHP
13 lines
349 B
PHP
<h1>Account Settings</h1>
|
|
<p>Here you can change some basic settings for your account.</p>
|
|
|
|
<form action="/settings" method="post">
|
|
<label for="game_skin">Game Skin</label>
|
|
<select id="game_skin" name="game_skin">
|
|
<option value="0">Default</option>
|
|
<option value="1">Snowstorm</option>
|
|
</select>
|
|
|
|
<button type="submit">Save</button>
|
|
</form>
|