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
|
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:xi="http://www.w3.org/2001/XInclude"
xmlns:py="http://genshi.edgewall.org/" py:strip="">
<body py:strip="">
<div id="ivle_padding">
<h2>User Profile</h2>
<p>
<span id="login"></span>
</p>
<p id="role"></p>
<h3>Change settings</h3>
<form action="">
<table>
<tr>
<td>Display name:</td>
<td>
<input type="text"
name="nick" id="nick" size="40" />
</td>
</tr>
<tr>
<td>Email address:</td>
<td>
<input type="text"
name="email" id="email" size="40" />
</td>
</tr>
</table>
<div id="changepassword"></div>
<p id="result"></p>
<p>
<input value="Save" onclick="return save_settings()" id="save"
type="submit" />
<input value="Revert" onclick="return revert_settings()" id="revert"
type="reset" />
</p>
</form>
<div id="notices"></div>
</div>
</body>
</html>
|