diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2005-12-19 18:55:52 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2005-12-19 18:55:52 +0000 |
| commit | 1855c017e95795966149c6c265a7588f8f5ad19e (patch) | |
| tree | 63862425f20f4c478cf4fd3effbcfeb9572c846a /phpBB/adm/style/acp_email.html | |
| parent | 738bf09f92d6c268c71c8f38311c8af7d2659db1 (diff) | |
| download | forums-1855c017e95795966149c6c265a7588f8f5ad19e.tar forums-1855c017e95795966149c6c265a7588f8f5ad19e.tar.gz forums-1855c017e95795966149c6c265a7588f8f5ad19e.tar.bz2 forums-1855c017e95795966149c6c265a7588f8f5ad19e.tar.xz forums-1855c017e95795966149c6c265a7588f8f5ad19e.zip | |
- drop in the new administration panel
- not finished yet: some user related items, style admin, database admin and permissions
- Graham: Please add your MCP schema data to the schema data file. ;)
git-svn-id: file:///svn/phpbb/trunk@5357 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/adm/style/acp_email.html')
| -rw-r--r-- | phpBB/adm/style/acp_email.html | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/phpBB/adm/style/acp_email.html b/phpBB/adm/style/acp_email.html new file mode 100644 index 0000000000..25acf70a98 --- /dev/null +++ b/phpBB/adm/style/acp_email.html @@ -0,0 +1,54 @@ +<!-- INCLUDE overall_header.html --> + +<a name="maincontent"></a> + +<h1>{L_ACP_MASS_EMAIL}</h1> + +<p>{L_ACP_MASS_EMAIL_EXPLAIN}</p> + +<!-- IF S_WARNING --> + <div class="errorbox"> + <h3>{L_WARNING}</h3> + <p>{WARNING_MSG}</p> + </div> +<!-- ENDIF --> + +<form id="acp_email" method="post" action="{U_ACTION}"> + +<fieldset> + <legend>{L_COMPOSE}</legend> +<dl> + <dt><label for="group">{L_SEND_TO_GROUP}:</label></dt> + <dd><select id="group" name="g">{S_GROUP_OPTIONS}</select></dd> +</dl> +<dl> + <dt><label for="usernames">{L_SEND_TO_USERS}:</label><br /><span>{L_SEND_TO_USERS_EXPLAIN}</span></dt> + <dd><textarea name="usernames" id="usernames" rows="5" cols="40">{USERNAMES}</textarea></dd> + <dd>[ <a href="#" onclick="window.open('{U_FIND_USERNAME}', '_phpbbsearch', 'height=500, resizable=yes, scrollbars=yes, width=740'); return false;">{L_FIND_USERNAME}</a> ]</dd> +</dl> +<dl> + <dt><label for="subject">{L_SUBJECT}:</label></dt> + <dd><input name="subject" type="text" id="subject" value="{SUBJECT}" /></dd> +</dl> +<dl> + <dt><label for="message">{L_MASS_MESSAGE}:</label><br /><span>{L_MASS_MESSAGE_EXPLAIN}</span></dt> + <dd><textarea id="message" name="message" rows="10" cols="60">{MESSAGE}</textarea></dd> +</dl> +<dl> + <dt><label for="priority">{L_MAIL_PRIORITY}:</label></dt> + <dd><select id="priority" name="mail_priority_flag">{S_PRIORITY_OPTIONS}</select></dd> +</dl> +<dl> + <dt><label for="send">{L_SEND_IMMEDIATLY}:</label></dt> + <dd><input id="send" type="checkbox" name="send_immediatly" checked="checked" /></dd> +</dl> +</fieldset> + +<fieldset class="submit-buttons"> + <input class="button1" type="submit" id="submit" name="submit" value="{L_EMAIL}" /> + <input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" /> +</fieldset> + +</form> + +<!-- INCLUDE overall_footer.html -->
\ No newline at end of file |
