~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to www/php/phpBB3/adm/style/acp_email.html

Merge setup-stuff.

phpBB is gone, configuration, setup and jail building are completely redone.

Please read doc/setup/install_proc.txt, or you'll not get far.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<!-- INCLUDE overall_header.html -->
2
 
 
3
 
<a name="maincontent"></a>
4
 
 
5
 
<h1>{L_ACP_MASS_EMAIL}</h1>
6
 
 
7
 
<p>{L_ACP_MASS_EMAIL_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_email" method="post" action="{U_ACTION}">
17
 
 
18
 
<fieldset>
19
 
        <legend>{L_COMPOSE}</legend>
20
 
<dl>
21
 
        <dt><label for="group">{L_SEND_TO_GROUP}:</label></dt>
22
 
        <dd><select id="group" name="g">{S_GROUP_OPTIONS}</select></dd>
23
 
</dl>
24
 
<dl>
25
 
        <dt><label for="usernames">{L_SEND_TO_USERS}:</label><br /><span>{L_SEND_TO_USERS_EXPLAIN}</span></dt>
26
 
        <dd><textarea name="usernames" id="usernames" rows="5" cols="40">{USERNAMES}</textarea></dd>
27
 
        <dd>[ <a href="{U_FIND_USERNAME}" onclick="find_username(this.href); return false;">{L_FIND_USERNAME}</a> ]</dd>
28
 
</dl>
29
 
<dl>
30
 
        <dt><label for="subject">{L_SUBJECT}:</label></dt>
31
 
        <dd><input name="subject" type="text" id="subject" value="{SUBJECT}" /></dd>
32
 
</dl>
33
 
<dl>
34
 
        <dt><label for="message">{L_MASS_MESSAGE}:</label><br /><span>{L_MASS_MESSAGE_EXPLAIN}</span></dt>
35
 
        <dd><textarea id="message" name="message" rows="10" cols="60">{MESSAGE}</textarea></dd>
36
 
</dl>
37
 
<dl>
38
 
        <dt><label for="priority">{L_MAIL_PRIORITY}:</label></dt>
39
 
        <dd><select id="priority" name="mail_priority_flag">{S_PRIORITY_OPTIONS}</select></dd>
40
 
</dl>
41
 
<dl>
42
 
        <dt><label for="send">{L_SEND_IMMEDIATELY}:</label></dt>
43
 
        <dd><input id="send" type="checkbox" class="radio" name="send_immediately" checked="checked" /></dd>
44
 
</dl>
45
 
 
46
 
<p class="submit-buttons">
47
 
        <input class="button1" type="submit" id="submit" name="submit" value="{L_EMAIL}" />&nbsp;
48
 
        <input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" />
49
 
</p>
50
 
{S_FORM_TOKEN}
51
 
</fieldset>
52
 
</form>
53
 
 
54
 
<!-- INCLUDE overall_footer.html -->