diff options
author | Guilhem Moulin <guilhem.moulin@fripost.org> | 2012-09-04 22:00:19 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem.moulin@fripost.org> | 2012-09-04 22:00:19 +0200 |
commit | e652956aa8dd6160b078f396e3f89157c15294af (patch) | |
tree | f5daa06245f0277925d8d5ad7d74c9a097d4dbd8 /template/edit-mailbox.html | |
parent | e04e3174c1c38e7587df495c19082a864f2373b2 (diff) |
Edition of mailboxes, aliases and lists.
Diffstat (limited to 'template/edit-mailbox.html')
-rw-r--r-- | template/edit-mailbox.html | 111 |
1 files changed, 111 insertions, 0 deletions
diff --git a/template/edit-mailbox.html b/template/edit-mailbox.html new file mode 100644 index 0000000..2a122bd --- /dev/null +++ b/template/edit-mailbox.html @@ -0,0 +1,111 @@ +<!DOCTYPE html> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> + <head> + <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> + <title>Edit mailbox <TMPL_VAR NAME=MAILBOX>@<TMPL_VAR NAME=DOMAIN></title> + <link href="/css/style.css" media="all" rel="stylesheet" type="text/css" /> + </head> + <body> + <div id="header"> + <div class="left column"> + <a href="<TMPL_VAR NAME=URL>/">Root</a> / + <a href="<TMPL_VAR NAME=URL>/<TMPL_VAR NAME=DOMAIN>/"><TMPL_VAR NAME=DOMAIN></a> / + <TMPL_VAR NAME=MAILBOX> / + </div> + <div class="right column"> + Logged as <a href="<TMPL_VAR NAME=URL>/<TMPL_VAR NAME=USER_DOMAINPART>/<TMPL_VAR NAME=USER_LOCALPART>/?a=edit" + ><TMPL_VAR NAME=USER_LOCALPART>@<TMPL_VAR NAME=USER_DOMAINPART></a> + | <a href="<TMPL_VAR NAME=URL>/?a=logout">Log out</a> + </div> + <br/> + </div> + <hr/> + + <h1>Edit mailbox <tt><TMPL_VAR NAME=MAILBOX>@<TMPL_VAR NAME=DOMAIN></tt></h1> + + <TMPL_IF NAME=NEWCHANGES> + <TMPL_IF NAME=ERROR> + <div class="fail">Error: <TMPL_VAR NAME=ERROR></div> + <TMPL_ELSE> + <div class="success">Your changes have succesfully been submitted.</div> + </TMPL_IF> + <TMPL_ELSE> + </br> + </TMPL_IF> + + <br/> + + <form class="editform" name="editform" method="post"> + <div class="editform"> + <input type="hidden" name="a" value="edit" /> + <input type="hidden" name="t" value="mailbox" /> + + <p> + <h4 class="label">Status</h4> + <select name="status"> + <option value="active" <TMPL_IF NAME=ISACTIVE>selected</TMPL_IF>>Active</option> + <option value="inactive" <TMPL_UNLESS NAME=ISACTIVE>selected</TMPL_UNLESS>>Inactive</option> + </select> + <div class="help"> + <b>Warning</b>: emails are <i>not</i> delivered to inactive entries. + </div> + </p> + + <hr/> + + <p> + <h4 class="label">Change password</h4> + + <table class="loginform"> + <tr> + <td class="label">Current password</td> + <td><input type="password" name="oldpassword" size="20" /></td> + </tr> + <tr> + <td class="label">New password</td> + <td><input type="password" name="newpassword" size="20" /></td> + </tr> + <tr> + <td class="label">Repeat new password</td> + <td><input type="password" name="newpassword2" size="20" /></td> + </tr> + </table> + + <div class="help"> + <i>Note</i>: + You need to enter + <tt><TMPL_VAR NAME=USER_LOCALPART>@<TMPL_VAR NAME=USER_DOMAINPART></tt>'s + current password first. + </div> + </p> + + <hr/> + + <p> + <h4 class="label">Description</h4> + <textarea type="text" name="description" cols="50" rows="3" wrap="soft"><TMPL_VAR NAME=DESCRIPTION></textarea> + <div class="help"> + An optional description. (HTML tags are allowed.) + </div> + </p> + + <hr/> + + <p> + <h4 class="label">Mail forwarding</h4> + <textarea type="text" name="maildrop" cols="50" rows="10" wrap="hard" ><TMPL_VAR NAME=MAILDROP></textarea> + <div class="help"> + An optional list of destinations (one e-mail address per line) that + will <i>also</i> receive mail sent to + <tt><TMPL_VAR NAME=MAILBOX>@<TMPL_VAR NAME=DOMAIN><tt>. + </div> + </p> + + <hr/> + + <input type="hidden" name="destination" value="<TMPL_VAR NAME=DESTINATION>" /> + <input type="submit" name="submit" value="Submit Changes" /> + </div> + </form> + </body> +</html> |