diff options
author | Guilhem Moulin <guilhem.moulin@fripost.org> | 2013-01-17 20:46:12 +0100 |
---|---|---|
committer | Guilhem Moulin <guilhem.moulin@fripost.org> | 2013-01-17 20:46:12 +0100 |
commit | 58bf9c43bf20c060a9e0623cb9f032b63889b384 (patch) | |
tree | 1f7f6d0eac03aaf10222d92ba633a176ecc29c02 /template/edit-mailbox.html | |
parent | 4091fbbb0b280120407e0625dd49e741e481a528 (diff) |
Mailbox → User.
Diffstat (limited to 'template/edit-mailbox.html')
-rw-r--r-- | template/edit-mailbox.html | 111 |
1 files changed, 0 insertions, 111 deletions
diff --git a/template/edit-mailbox.html b/template/edit-mailbox.html deleted file mode 100644 index 41fcf45..0000000 --- a/template/edit-mailbox.html +++ /dev/null @@ -1,111 +0,0 @@ -<!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=user>@<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="../../">Root</a> / - <a href="../"><TMPL_VAR NAME=domain></a> / - <TMPL_VAR NAME=user> / - </div> - <div class="right column"> - Logged as <a href="<TMPL_VAR NAME=userURI>/?a=edit" - ><TMPL_VAR NAME=user_localpart>@<TMPL_VAR NAME=user_domainpart></a> - | <a href="../../?a=logout">Log out</a> - </div> - <br/> - </div> - <hr/> - - <div id="content"> - <h1>Edit mailbox <span class="mailbox"><TMPL_VAR NAME=user>@<TMPL_VAR NAME=domain></span></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" action="?"> - <div class="editform"> - <input type="hidden" name="a" value="edit" /> - - <h4 class="label" id="status">Status</h4> - <select name="isactive"> - <option value="1" <TMPL_IF NAME=isactive>selected="selected"</TMPL_IF>>Active</option> - <option value="0" <TMPL_UNLESS NAME=isactive>selected="selected"</TMPL_UNLESS>>Inactive</option> - </select> - <div class="help"> - <b>Warning</b>: emails are <i>not</i> delivered to inactive entries. - </div> - - <hr/> - - <h4 class="label" id="password">Change password</h4> - - <table class="loginform"> - <tr> - <td class="label">Current password</td> - <td><input type="password" name="oldpw" size="20" /></td> - </tr> - <tr> - <td class="label">New password</td> - <td><input type="password" name="newpw" size="20" /></td> - </tr> - <tr> - <td class="label">Repeat new password</td> - <td><input type="password" name="newpw2" size="20" /></td> - </tr> - </table> - - <div class="help"> - <i>Note</i>: - You need to enter your - (<span class="mailbox"><TMPL_VAR NAME=user_localpart>@<TMPL_VAR NAME=user_domainpart></span>'s) - current password first. - Leave these fields empty if you do not want to change the - password. - </div> - - <hr/> - - <h4 class="label" id="description">Description</h4> - <textarea name="description" cols="50" rows="5" ><TMPL_VAR NAME=description></textarea> - <div class="help"> - An optional description. (HTML tags are allowed.) - </div> - - <hr/> - - <h4 class="label" id="forward">Mail forwarding</h4> - <textarea name="forwards" cols="50" rows="5" ><TMPL_VAR NAME=forwards></textarea> - <div class="help"> - An optional list of destinations (one e-mail address per line) that - will receive mail for - <span class="email"><TMPL_VAR NAME=user>@<TMPL_VAR NAME=domain></span>. - (<i>Note</i>: When not empty, this list cancels delivery to - this mailbox, so do not forget to list - <span class="email"><TMPL_VAR NAME=user>@<TMPL_VAR NAME=domain></span> - here as well if you want this mailbox to be delivered too.) - </div> - <hr/> - <br/> - - <input type="submit" name="cancel" value="Cancel" /> - <input type="submit" name="submit" value="Submit" /> - </div> - </form> - </div> - </body> -</html> |