blob: a3e60dadd33fcf518d271ce05fbed614875ad9a8 (
plain) (
blame)
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
<!-- INCLUDE overall_header.html -->
<A NAME="maincontent"></A>
<H1>{L_INSTADISC}</H1>
<P>{L_INSTADISC_EXPLAIN}
<A HREF="http://fourisland.com/projects/instadisc/wiki/Update/phpBB3">{L_INSTADISC_LINK_TEXT}</A>
</P>
<form id="acp_instadisc" method="post" action="{U_ACTION}">
<fieldset>
<legend>{L_INSTADISC} {L_SUBSCRIPTION}</legend>
<dl>
<dt><label for="subscription_title">{L_SUBSCRIPTION_TITLE}:</label></dt>
<dd><input name="subscription_title" type="text" id="subscription_title" maxlength="255" VALUE="{S_SUBSCRIPTION_TITLE}" SIZE="40"/></dd>
</DL>
<DL>
<DT>
<LABEL FOR="subscription_file">{L_SUBSCRIPTION_FILE}</LABEL>
<BR><SPAN>This is the URL of your subscription file</SPAN>
</DT>
<DD>{S_SUBSCRIPTION_FILE}</DD>
</DL>
<DL>
<dt><label for="central_server">{L_CENTRAL_SERVER}:</label><BR>
<SPAN>This is the Central Server's XML-RPC URL. They should have provided this for you in an email and also on their site. </SPAN>
</dt>
<dd><input name="central_server" type="text" id="central_server" maxlength="255" VALUE="{S_CENTRAL_SERVER}" SIZE="40"/></dd>
</dl>
<DL>
<DT>
<LABEL FOR="central_server_username">{L_USERNAME}</LABEL>
<BR><SPAN>Enter the username you registered for at your Central Server</SPAN>
</DT>
<DD><INPUT NAME="central_server_username" TYPE="text" ID="central_server_username" MAXLENGTH="255" VALUE="{S_USERNAME}" SIZE="40"></DD>
</DL>
<DL>
<DT>
<LABEL FOR="central_server_password">{L_PASSWORD}</LABEL>
<BR><SPAN>Enter the password to go with the username above</SPAN>
</DT>
<DD><INPUT NAME="central_server_password" TYPE="password" ID="central_server_password" MAXLENGTH="255" VALUE="{S_PASSWORD}" SIZE="40"></DD>
</DL>
<DL>
<DT>
<LABEL FOR="central_server_activation">{L_ACTIVATION}</LABEL>
<BR><SPAN>After submitting your subscription for sponsership at your Central Server, it should provide you with an Activation Key</SPAN>
</DT>
<DD><INPUT NAME="central_server_activation" TYPE="text" ID="central_server_activation" MAXLENGTH="255" VALUE="{S_ACTIVATION}" SIZE="40"></DD>
</DL>
<DL>
<DT>
<LABEL FOR="encryption_key">{L_ENCRYPTION}</LABEL>
<BR><SPAN>If you have the PHP module "mcrypt" installed, you can password protect this subscription so that users who wish to subscribe to it must provide the correct password. Leave this field blank if you do not wish to encrypt this subscription.</SPAN>
</DT>
<DD><INPUT NAME="encryption_key" TYPE="text" ID="encryption_key" MAXLENGTH="255" VALUE="{S_ENCRYPTION}" SIZE="40"></DD>
</DL>
</fieldset>
<p class="submit-buttons">
<input class="button1" type="submit" id="submit" name="submit" value="{L_SUBMIT}" />
<input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" />
</p>
</form>
<!-- INCLUDE overall_footer.html -->
|