831 |
florian |
1 |
{IF ERROR}
|
|
|
2 |
<h4>{ERROR}</h4>
|
|
|
3 |
{/IF}
|
|
|
4 |
|
|
|
5 |
<h2>{LANG->PersProfile}</h2>
|
|
|
6 |
|
|
|
7 |
<form id="profile-form" action="{URL->ACTION}" method="POST">
|
|
|
8 |
{POST_VARS}
|
|
|
9 |
<input type="hidden" name="panel" value="email" />
|
|
|
10 |
<input type="hidden" name="forum_id" value="{PROFILE->forum_id}" />
|
|
|
11 |
<table class="PhorumFormTable" cellspacing="0" border="0">
|
|
|
12 |
<tr>
|
|
|
13 |
<td nowrap="nowrap">{LANG->RealName}: </td>
|
|
|
14 |
<td><input type="text" name="real_name" size="30" value="{PROFILE->real_name}" /></td>
|
|
|
15 |
</tr>
|
|
|
16 |
<tr>
|
|
|
17 |
<td valign="top">{LANG->Email}*: {if PROFILE->EMAIL_CONFIRM}<br />{LANG->EmailConfirmRequired}{/if}</td>
|
|
|
18 |
<td><input type="text" name="email" size="30" value="{PROFILE->email}" /></td>
|
|
|
19 |
</tr>
|
|
|
20 |
{IF PROFILE->email_temp_part}
|
|
|
21 |
<tr>
|
|
|
22 |
<td valign="top">{LANG->EmailVerify}: </td>
|
|
|
23 |
<td>{LANG->EmailVerifyDesc} {PROFILE->email_temp_part}<br>
|
|
|
24 |
{LANG->EmailVerifyEnterCode}: <input type="text" name="email_verify_code" value="" />
|
|
|
25 |
</td>
|
|
|
26 |
</tr>
|
|
|
27 |
{/IF}
|
|
|
28 |
<tr>
|
|
|
29 |
<td colspan="2"><input type="checkbox" name="hide_email" value="1"{IF PROFILE->hide_email 1}{ELSE} checked="checked"{/IF} /> {LANG->AllowSeeEmail}</td>
|
|
|
30 |
</tr>
|
|
|
31 |
<tr>
|
|
|
32 |
<td colspan="2"> </td>
|
|
|
33 |
</tr>
|
|
|
34 |
<tr>
|
|
|
35 |
<td colspan="2"><hr /></td>
|
|
|
36 |
</tr>
|
|
|
37 |
<tr>
|
|
|
38 |
<td colspan="2"> </td>
|
|
|
39 |
</tr>
|
|
|
40 |
<tr>
|
|
|
41 |
<td valign="top" nowrap="nowrap">{LANG->Signature}: </td>
|
|
|
42 |
<td width="100%"><textarea name="signature" rows="15" cols="50">{PROFILE->signature}</textarea></td>
|
|
|
43 |
</tr>
|
|
|
44 |
</table>
|
|
|
45 |
<input type="submit" value="{LANG->Submit}" />
|
|
|
46 |
</form>
|
|
|
47 |
<br />
|
|
|
48 |
<br />
|
|
|
49 |
<br />
|
|
|
50 |
<h2>{LANG->ChangePassword}</h2>
|
|
|
51 |
|
|
|
52 |
<form id="profile-form" action="{URL->ACTION}" method="POST">
|
|
|
53 |
{POST_VARS}
|
|
|
54 |
<input type="hidden" name="panel" value="password" />
|
|
|
55 |
<input type="hidden" name="forum_id" value="{PROFILE->forum_id}" />
|
|
|
56 |
<table class="PhorumFormTable" cellspacing="0" border="0">
|
|
|
57 |
<tr>
|
|
|
58 |
<td nowrap="nowrap">{LANG->Password}: </td>
|
|
|
59 |
<td><input type="password" name="password" size="30" value="" /></td>
|
|
|
60 |
</tr>
|
|
|
61 |
<tr>
|
|
|
62 |
<td nowrap="nowrap"> </td>
|
|
|
63 |
<td><input type="password" name="password2" size="30" value="" /> ({LANG->again})</td>
|
|
|
64 |
</tr>
|
|
|
65 |
</table>
|
|
|
66 |
*{LANG->Required}<br /><br />
|
|
|
67 |
<input type="submit" value="{LANG->Submit}" />
|
|
|
68 |
</form>
|