-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.php
49 lines (48 loc) · 1.58 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
39
40
41
42
43
44
45
46
47
48
49
<?
require_once('template.php');
htmlHead('settings.php');
?> <div id="settingsPage" data-role="page" data-theme="a">
<div data-role="header">
<a href="index.php" data-role="button" data-icon="back" data-iconpos="notext" data-rel="back">Back</a>
<h4>Settings</h4>
</div>
<div data-role="content">
<div data-role="collapsible-set" data-inset="false">
<div data-role="collapsible">
<h3>User Details</h3>
<form id="editUserForm" data-ajax="false">
<fieldset data-role="fieldcontain">
<label for="edit_name">Name: </label>
<input type="text" id="edit_name" name="edit_name"/>
</fieldset>
<fieldset data-role="fieldcontain">
<label for="edit_email">E-mail:</label>
<input type="text" id="edit_email" name="edit_email"/>
</fieldset>
</form>
</div>
<div data-role="collapsible">
<h3>Notification Options</h3>
<p>Coming soon...</p>
</div>
<div data-role="collapsible">
<h3>Change Password</h3>
<div data-role="fieldcontain" >
<label for="edit_password1">Password:</label>
<input type="password" name="edit_password1" id="edit_password1" placeholder="Required"/>
</div>
<div data-role="fieldcontain" >
<label for="edit_password2">Repeat Password:</label>
<input type="password" name="edit_password2" id="edit_password2" placeholder="Required"/>
</div>
<button data-role="button">Change Password</button>
</div>
<div data-role="collapsible">
<h3>Delete Account</h3>
<p>Are you sure?</p>
</div>
</div>
</div>
</div>
<?
htmlFoot();