1 |
1773
|
Luisehahne
|
<!-- BEGIN main_block -->
|
2 |
1792
|
Luisehahne
|
{CSS_BLOCK}
|
3 |
|
|
<!-- BEGIN success_block -->
|
4 |
|
|
{SUCCESS_VALUE}
|
5 |
|
|
<!-- END success_block -->
|
6 |
|
|
<!-- BEGIN error_block -->
|
7 |
|
|
{ERROR_VALUE}
|
8 |
1773
|
Luisehahne
|
<!-- END error_block -->
|
9 |
|
|
<hr />
|
10 |
|
|
<div class="account">
|
11 |
1792
|
Luisehahne
|
<div class="details">
|
12 |
|
|
<h3>{HEADING_MY_SETTINGS}</h3>
|
13 |
|
|
<form name="details" action="{ACTION_URL}" method="post">
|
14 |
|
|
<input type="hidden" name="redirect" value="{HTTP_REFERER}" />
|
15 |
|
|
<table>
|
16 |
|
|
<tr>
|
17 |
|
|
<td>{TEXT_DISPLAY_NAME}:</td>
|
18 |
|
|
<td class="input">
|
19 |
|
|
<input class="display_name" type="text" name="display_name" value="{DISPLAY_NAME}" />
|
20 |
|
|
</td>
|
21 |
|
|
</tr>
|
22 |
|
|
<tr>
|
23 |
|
|
<td>{TEXT_LANGUAGE}:</td>
|
24 |
|
|
<td class="input">
|
25 |
|
|
<select name="language" id="language">
|
26 |
|
|
<option value="">{MOD_PREFERENCE_PLEASE_SELECT}</option>
|
27 |
|
|
<!-- BEGIN language_list_block -->
|
28 |
|
|
<option value="{CODE}"{SELECTED} style="background: url({FLAG}.png) no-repeat center left; padding-left: 20px;">{NAME} ({CODE})</option>
|
29 |
|
|
<!-- END language_list_block -->
|
30 |
|
|
</select>
|
31 |
|
|
</td>
|
32 |
|
|
</tr>
|
33 |
|
|
<tr>
|
34 |
|
|
<td>{TEXT_TIMEZONE}:</td>
|
35 |
|
|
<td class="input">
|
36 |
|
|
<select name="timezone" style="width: 98%;">
|
37 |
1849
|
Luisehahne
|
<option value="0">{MOD_PREFERENCE_PLEASE_SELECT}</option>
|
38 |
1792
|
Luisehahne
|
<!-- BEGIN timezone_list_block -->
|
39 |
|
|
<option value="{VALUE}" {SELECTED}>{NAME}</option>
|
40 |
|
|
<!-- END timezone_list_block -->
|
41 |
|
|
</select>
|
42 |
|
|
</td>
|
43 |
|
|
</tr>
|
44 |
|
|
<tr>
|
45 |
|
|
<td>{TEXT_DATE_FORMAT}:</td>
|
46 |
|
|
<td class="input">
|
47 |
|
|
<select name="date_format" style="width: 98%;">
|
48 |
|
|
<option value="">{MOD_PREFERENCE_PLEASE_SELECT}</option>
|
49 |
|
|
<!-- BEGIN date_format_list_block -->
|
50 |
|
|
<option value="{VALUE}" {SELECTED}>{NAME}</option>
|
51 |
|
|
<!-- END date_format_list_block -->
|
52 |
|
|
</select>
|
53 |
|
|
</td>
|
54 |
|
|
</tr>
|
55 |
|
|
<tr>
|
56 |
|
|
<td>{TEXT_TIME_FORMAT}:</td>
|
57 |
|
|
<td class="input">
|
58 |
|
|
<select name="time_format" style="width: 98%;">
|
59 |
|
|
<option value="">{MOD_PREFERENCE_PLEASE_SELECT}</option>
|
60 |
|
|
<!-- BEGIN time_format_list_block -->
|
61 |
|
|
<option value="{VALUE}" {SELECTED}>{NAME}</option>
|
62 |
|
|
<!-- END time_format_list_block -->
|
63 |
|
|
</select>
|
64 |
|
|
</td>
|
65 |
|
|
</tr>
|
66 |
|
|
<tr>
|
67 |
|
|
<td colspan="2"> </td>
|
68 |
|
|
</tr>
|
69 |
|
|
<tr>
|
70 |
|
|
<td colspan="2" class="button">
|
71 |
1845
|
Luisehahne
|
<p class="note" style="{DISPLAY_PREFERENCES_LANGUAGE}">{MOD_PREFERENCE_SET_PREFERENCES_LANGUAGE}</p>
|
72 |
1792
|
Luisehahne
|
<!-- BEGIN show_detail_send_block -->
|
73 |
|
|
<button class="error" type="reset" name="reset" value="reset">{TEXT_RESET}</button>
|
74 |
|
|
<button type="submit" name="action" value="details">{MOD_PREFERENCE_SAVE_SETTINGS}</button>
|
75 |
|
|
<!-- END show_detail_send_block -->
|
76 |
|
|
<button type="button" value="cancel" onclick="javascript:window.location='{HTTP_REFERER}';">{TEXT_CANCEL}</button>
|
77 |
|
|
</td>
|
78 |
|
|
</tr>
|
79 |
|
|
</table>
|
80 |
|
|
</form>
|
81 |
|
|
</div>
|
82 |
|
|
<!-- BEGIN show_email_send_block -->
|
83 |
|
|
<div class="email">
|
84 |
|
|
<h3>{HEADING_MY_EMAIL}</h3>
|
85 |
|
|
<form name="email" action="" method="post">
|
86 |
|
|
<input type="hidden" name="redirect" value="{HTTP_REFERER}" />
|
87 |
|
|
<table>
|
88 |
|
|
<tr>
|
89 |
|
|
<td>{TEXT_EMAIL}:</td>
|
90 |
|
|
<td class="input">
|
91 |
|
|
<input type="text" name="email" value="{EMAIL}" style="width: 98%;" />
|
92 |
|
|
</td>
|
93 |
|
|
</tr>
|
94 |
|
|
<tr>
|
95 |
|
|
<td>{TEXT_CURRENT_PASSWORD}:</td>
|
96 |
|
|
<td class="input">
|
97 |
|
|
<input type="password" name="current_password" value="" style="width: 98%;" />
|
98 |
|
|
</td>
|
99 |
|
|
</tr>
|
100 |
|
|
<tr>
|
101 |
|
|
<td colspan="2"> </td>
|
102 |
|
|
</tr>
|
103 |
|
|
<tr>
|
104 |
|
|
<td colspan="2" class="button">
|
105 |
|
|
<button type="reset" name="reset" value="reset">{TEXT_RESET}</button>
|
106 |
|
|
<button type="submit" name="action" value="email">{MOD_PREFERENCE_SAVE_EMAIL}</button>
|
107 |
|
|
<button type="button" value="cancel" onclick="javascript:window.location='{HTTP_REFERER}';">{TEXT_CANCEL}</button>
|
108 |
|
|
</td>
|
109 |
|
|
</tr>
|
110 |
|
|
</table>
|
111 |
|
|
</form>
|
112 |
|
|
</div>
|
113 |
|
|
<!-- END show_email_send_block -->
|
114 |
|
|
<!-- BEGIN show_password_send_block -->
|
115 |
|
|
<div class="password">
|
116 |
|
|
<h3>{HEADING_MY_PASSWORD}</h3>
|
117 |
|
|
<form name="password" action="" method="post">
|
118 |
|
|
<input type="hidden" name="redirect" value="{HTTP_REFERER}" />
|
119 |
|
|
<table>
|
120 |
|
|
<tr>
|
121 |
|
|
<td>{TEXT_CURRENT_PASSWORD}:</td>
|
122 |
|
|
<td class="input">
|
123 |
|
|
<input type="password" name="current_password" value="" style="width: 98%;" />
|
124 |
|
|
</td>
|
125 |
|
|
</tr>
|
126 |
|
|
<tr>
|
127 |
|
|
<td>{TEXT_NEW_PASSWORD}:</td>
|
128 |
|
|
<td class="input">
|
129 |
|
|
<input type="password" name="new_password" value="" style="width: 98%;" />
|
130 |
|
|
</td>
|
131 |
|
|
</tr>
|
132 |
|
|
<tr>
|
133 |
|
|
<td>{TEXT_RETYPE_NEW_PASSWORD}:</td>
|
134 |
|
|
<td class="input">
|
135 |
|
|
<input type="password" name="new_password2" value="" style="width: 98%;" />
|
136 |
|
|
</td>
|
137 |
|
|
</tr>
|
138 |
|
|
<tr>
|
139 |
|
|
<td colspan="2"> </td>
|
140 |
|
|
</tr>
|
141 |
|
|
<tr>
|
142 |
|
|
<td colspan="2" class="button">
|
143 |
|
|
<button type="reset" name="reset" value="reset">{TEXT_RESET}</button>
|
144 |
|
|
<button type="submit" name="action" value="password">{MOD_PREFERENCE_SAVE_PASSWORD}</button>
|
145 |
|
|
<button type="button" value="cancel" onclick="javascript:window.location='{HTTP_REFERER}';">{TEXT_CANCEL}</button>
|
146 |
|
|
</td>
|
147 |
|
|
</tr>
|
148 |
|
|
</table>
|
149 |
|
|
</form>
|
150 |
|
|
</div>
|
151 |
|
|
<!-- END show_password_send_block -->
|
152 |
1773
|
Luisehahne
|
</div>
|
153 |
|
|
<!-- END main_block -->
|