diff options
Diffstat (limited to 'templates/add-list.html')
-rw-r--r-- | templates/add-list.html | 112 |
1 files changed, 112 insertions, 0 deletions
diff --git a/templates/add-list.html b/templates/add-list.html new file mode 100644 index 0000000..59ca226 --- /dev/null +++ b/templates/add-list.html @@ -0,0 +1,112 @@ +<!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 list 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="../">Root</a> / + <a href="./"><TMPL_VAR NAME=domain></a> / + </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>Add list under <span class="domain"><TMPL_VAR NAME=domain></span></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" action="?"> + <div class="editform"> + <input type="hidden" name="a" value="add" /> + <input type="hidden" name="t" value="list" /> + + <h4 class="label">List name</h4> + <input type="text" name="list" size="15" value="<TMPL_VAR NAME=list>"/>@<TMPL_VAR NAME=domain> + + <hr/> + + <h4 class="label">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">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> + <div class="help"> + This is the admin password for the web interface of the chosen list manager. + (The user name being yourself + <span class="email"><TMPL_VAR NAME=user_localpart>@<TMPL_VAR NAME=user_domainpart></span>.) + </div> + + <hr/> + + <h4 class="label">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">Transport</h4> + <select name="transport"> + <option value="mailman" <TMPL_UNLESS NAME=isenc>selected="selected"</TMPL_UNLESS>>GNU Mailman</option> + <option value="schleuder" <TMPL_IF NAME=isenc>selected="selected"</TMPL_IF>>Schleuder</option> + </select> + <div class="help"> + The mailing list manager. (<i>Note</i>: It is not possible to + switch once the list has been created.) The two current + choices are the well-known + <a href="http://list.org/">GNU Mailman</a>, and + <a href="http://schleuder2.nadir.org/">Schleuder</a>. The + latter offers GPG-enagbled lists (only). + </div> + + <hr/> + <br/> + + <input type="submit" name="cancel" value="Cancel" /> + <input type="submit" name="submit" value="Submit" /> + <div class="help"> + <i>Note</i>: No confirmation email will be sent. It may take a while for the list to be created (especially + for the Schleuder list manager, as it requires a GPG key creation); Once the list has succefully been created, + it will be visible under the + <a href="./">management page for <span class="domain"><TMPL_VAR NAME=domain></span></a>. + </div> + </div> + </form> + </div> + </body> +</html> |