-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.php
More file actions
40 lines (35 loc) · 1.06 KB
/
settings.php
File metadata and controls
40 lines (35 loc) · 1.06 KB
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
39
40
<?php
include 'includes/autoloader.inc.php';
Control::settings();
$string = 'Profile Settings';
require("html.php");?>
<div class="form">
<h1>Account Settings</h1>
<p id="error"></p>
<form name="accountInfo" action="" method="post">
<p>Your Name</p>
<div class ="input_row">
<input type="text" placeholder="Username" id="profileUsername" />
<span id="profileUsernameErr"></span>
</div>
<p>Age</p>
<div class ="input_row">
<input type="text" placeholder="Age" id="profileAge" />
<span id="profileAgeErr"></span>
</div>
<div class ="input_row">
<p>Password</p>
<input type="button" value="Change" id="change" />
<input type="password" placeholder="New Password" id="newPass" />
<span id="profilePassErr"></span>
</div>
<div class ="input_row">
<input type="button" value=" Cancel " id="cancel" />
<input type="button" value=" Save " id="save" />
</div>
<input type="button" value="Delete Account" id="delete" />
</form>
</div>
<script src="settings.js"></script>
</body>
</html>