-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.php
executable file
·38 lines (34 loc) · 1.13 KB
/
settings.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php require "header.php"; ?>
<div id="BoxWrapper">
<div class="settingsBox">
<h2>Change password</h2>
<form>
<label>Enter current password:</label>
<input type="password" name="oldPassword" /><br>
<label>Enter new password: </label>
<input type="password" name="newPassword1" /><br>
<label>Re-enter new password: </label>
<input type="password" name="newPassword2" /><br>
</form>
</div>
<div class="settingsBox">
<h2>Select theme</h2><br>
<form>
<table>
<tr>
<td><input type="radio" name="theme" value="Grey" class="colourSelector" id="colourGrey"></td>
<td><input type="radio" name="theme" value="Blue" class="colourSelector" id="colourBlue"></td>
</tr>
<tr>
<td><input type="radio" name="theme" value="Orange" class="colourSelector" id="colourOrange"></td>
<td><input type="radio" name="theme" value="some_colour..." class="colourSelector" id="anIDHere"></td>
</tr>
</table>
</form>
</div>
<div class="settingsBox">
</div>
<div class="settingsBox">
</div>
</div>
<?php require "footer.php"; ?>