diff options
author | Guilhem Moulin <guilhem.moulin@fripost.org> | 2012-09-08 19:49:11 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem.moulin@fripost.org> | 2012-09-08 23:40:50 +0200 |
commit | 4a0d87e642c4d97ee2a026f1207e25a001518f3a (patch) | |
tree | b742103cfbce8c7c576766f4db9016f0faa9b629 /template/add-mailbox.html | |
parent | 0dfeabffccf3695f5f270964aa8ef8e3460ae440 (diff) |
Abstracting the LDAP stuff in an OO library.
Diffstat (limited to 'template/add-mailbox.html')
-rw-r--r-- | template/add-mailbox.html | 100 |
1 files changed, 100 insertions, 0 deletions
diff --git a/template/add-mailbox.html b/template/add-mailbox.html new file mode 100644 index 0000000..fd7e521 --- /dev/null +++ b/template/add-mailbox.html @@ -0,0 +1,100 @@ +<!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>Add mailbox under <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> / + </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>Add mailbox under <tt><TMPL_VAR NAME=domain></tt></h1> + + <TMPL_IF NAME=error> + <div class="fail">Error: <TMPL_VAR NAME=error></div> + <TMPL_ELSE> + </br> + </TMPL_IF> + + <br/> + + <form class="editform" name="editform" method="post"> + <div class="editform"> + <input type="hidden" name="a" value="add" /> + <input type="hidden" name="t" value="mailbox" /> + + <p> + <h4 class="label">User name</h4> + <input type="text" name="user" size="15" value="<TMPL_VAR NAME=user>"/>@<TMPL_VAR NAME=domain> + </p> + + <hr/> + + <p> + <h4 class="label">Status</h4> + <select name="isactive"> + <option value="1" <TMPL_IF NAME=isactive>selected</TMPL_IF>>Active</option> + <option value="0" <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">Password</h4> + + <table class="loginform"> + <tr> + <td class="label">Password</td> + <td><input type="password" name="password" size="20" /></td> + </tr> + <tr> + <td class="label">Repeat password</td> + <td><input type="password" name="password2" size="20" /></td> + </tr> + </table> + </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="forwards" cols="50" rows="10" wrap="hard" ><TMPL_VAR NAME=forwards></textarea> + <div class="help"> + An optional list of destinations (one e-mail address per line) that + will <i>also</i> receive mail delivered to this mailbox. + </div> + </p> + + <hr/> + + <input type="submit" name="submit" value="Submit Changes" /> + </div> + </form> + </body> +</html> |