30 lines
1008 B
PHP
30 lines
1008 B
PHP
<h1>Account Settings</h1>
|
|
<p>Here you can change some basic settings for your account.</p>
|
|
|
|
<section>
|
|
<h2>Game Skin</h2>
|
|
<form action="/settings" method="post">
|
|
<select name="game_skin">
|
|
<option value="0">Default</option>
|
|
<option value="1">Snowstorm</option>
|
|
</select>
|
|
|
|
<button type="submit">Save</button>
|
|
</form>
|
|
</section>
|
|
|
|
|
|
<section>
|
|
<h2>Change Password</h2>
|
|
<form action="/changepassword" method="post">
|
|
<table width="100%">
|
|
<tr><td colspan="2">Use the form below to change your password. All fields are required. New passwords must be 10 alphanumeric characters or less.</td></tr>
|
|
<tr><td>Old Password:</td><td><input type="password" name="password"></td></tr>
|
|
<tr><td>New Password:</td><td><input type="password" name="new_password"></td></tr>
|
|
<tr><td>Verify New Password:</td><td><input type="password" name="confirm_new_password"><br><br><br></td></tr>
|
|
<tr><td colspan="2"><input type="submit" name="submit" value="Submit"></td></tr>
|
|
</table>
|
|
</form>
|
|
</section>
|
|
|