443
by dcoles
Added Forum application along with unmodifed version of phpBB3 "Olympus" 3.0.0 |
1 |
<!-- INCLUDE overall_header.html -->
|
2 |
||
3 |
<a name="maincontent"></a> |
|
4 |
||
5 |
<h1>{L_ACP_JABBER_SETTINGS}</h1> |
|
6 |
||
7 |
<p>{L_ACP_JABBER_SETTINGS_EXPLAIN}</p> |
|
8 |
||
9 |
<!-- IF S_WARNING -->
|
|
10 |
<div class="errorbox"> |
|
11 |
<h3>{L_WARNING}</h3> |
|
12 |
<p>{WARNING_MSG}</p> |
|
13 |
</div> |
|
14 |
<!-- ENDIF -->
|
|
15 |
||
16 |
<form id="acp_jabber" method="post" action="{U_ACTION}"> |
|
17 |
||
18 |
<fieldset> |
|
19 |
<legend>{L_ACP_JABBER_SETTINGS}</legend> |
|
20 |
<!-- IF S_GTALK_NOTE -->
|
|
21 |
<p>{L_JAB_GTALK_NOTE}</p> |
|
22 |
<!-- ENDIF -->
|
|
23 |
<dl> |
|
24 |
<dt><label for="jab_enable">{L_JAB_ENABLE}:</label><br /><span>{L_JAB_ENABLE_EXPLAIN}</span></dt> |
|
25 |
<dd><label><input type="radio" class="radio" id="jab_enable" name="jab_enable" value="1"<!-- IF JAB_ENABLE --> checked="checked"<!-- ENDIF --> /> {L_ENABLED}</label> |
|
26 |
<label><input type="radio" class="radio" name="jab_enable" value="0"<!-- IF not JAB_ENABLE --> checked="checked"<!-- ENDIF --> /> {L_DISABLED}</label></dd> |
|
27 |
</dl> |
|
28 |
<dl> |
|
29 |
<dt><label for="jab_host">{L_JAB_SERVER}:</label><br /><span>{L_JAB_SERVER_EXPLAIN}</span></dt> |
|
30 |
<dd><input type="text" id="jab_host" name="jab_host" value="{JAB_HOST}" /></dd> |
|
31 |
</dl> |
|
32 |
<dl> |
|
33 |
<dt><label for="jab_port">{L_JAB_PORT}:</label><br /><span>{L_JAB_PORT_EXPLAIN}</span></dt> |
|
34 |
<dd><input type="text" id="jab_port" name="jab_port" value="{JAB_PORT}" maxlength="5" size="5" /></dd> |
|
35 |
</dl> |
|
36 |
<dl> |
|
37 |
<dt><label for="jab_username">{L_JAB_USERNAME}:</label><br /><span>{L_JAB_USERNAME_EXPLAIN}</span></dt> |
|
38 |
<dd><input type="text" id="jab_username" name="jab_username" value="{JAB_USERNAME}" /></dd> |
|
39 |
</dl> |
|
40 |
<dl> |
|
41 |
<dt><label for="jab_password">{L_JAB_PASSWORD}:</label></dt> |
|
42 |
<dd><input type="password" id="jab_password" name="jab_password" value="{JAB_PASSWORD}" /></dd> |
|
43 |
</dl> |
|
44 |
<!-- IF S_CAN_USE_SSL -->
|
|
45 |
<dl> |
|
46 |
<dt><label for="jab_use_ssl">{L_JAB_USE_SSL}:</label><br /><span>{L_JAB_USE_SSL_EXPLAIN}</span></dt> |
|
47 |
<dd><label><input type="radio" class="radio" id="jab_use_ssl" name="jab_use_ssl" value="1"<!-- IF JAB_USE_SSL --> checked="checked"<!-- ENDIF --> /> {L_YES}</label> |
|
48 |
<label><input type="radio" class="radio" name="jab_use_ssl" value="0"<!-- IF not JAB_USE_SSL --> checked="checked"<!-- ENDIF --> /> {L_NO}</label></dd> |
|
49 |
</dl> |
|
50 |
<!-- ENDIF -->
|
|
51 |
<dl> |
|
52 |
<dt><label for="jab_package_size">{L_JAB_PACKAGE_SIZE}:</label><br /><span>{L_JAB_PACKAGE_SIZE_EXPLAIN}</span></dt> |
|
53 |
<dd><input type="text" id="jab_package_size" name="jab_package_size" value="{JAB_PACKAGE_SIZE}" maxlength="5" size="5" /></dd> |
|
54 |
</dl> |
|
55 |
||
56 |
</fieldset> |
|
57 |
||
58 |
<fieldset class="submit-buttons"> |
|
59 |
<input class="button1" type="submit" id="submit" name="submit" value="{L_SUBMIT}" /> |
|
60 |
<input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" /> |
|
61 |
{S_FORM_TOKEN} |
|
62 |
</fieldset> |
|
63 |
</form> |
|
64 |
||
65 |
<!-- INCLUDE overall_footer.html -->
|