Changeset 2559 for alternc/trunk/bureau/admin/mail_add.php
- Timestamp:
- 09/08/09 07:29:38 (4 years ago)
- Location:
- alternc/trunk
- Files:
-
- 2 edited
-
. (modified) (2 props)
-
bureau/admin/mail_add.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
alternc/trunk
-
Property
svn:ignore
set to
build-stamp
-
Property
svn:mergeinfo
set to
/alternc/branches/benjamin-bureaubleu merged eligible
-
Property
svn:ignore
set to
-
alternc/trunk/bureau/admin/mail_add.php
r798 r2559 30 30 */ 31 31 require_once("../class/config.php"); 32 include_once("head.php"); 32 33 33 include("head.php"); 34 $fields = array ( 35 "domain" => array ("request", "string", ""), 36 "many" => array ("request", "integer", 0), 37 ); 38 getFields($fields); 39 34 40 ?> 35 </head>36 <body>37 41 <h3><?php printf(_("Add a mail to the domain %s"),"http://$domain"); ?> : </h3> 38 42 <?php 39 43 if ($error) { 40 44 echo "<p class=\"error\">$error</p>"; 41 } 45 } 42 46 43 47 ?> 44 <form action="mail_doadd.php" method="post">48 <form action="mail_doadd.php" name="main" id="main" method="post"> 45 49 <table border="1" cellspacing="0" cellpadding="4"> 46 <input type="hidden" name="many" value="<?php echo intval($many); ?>" />47 50 <tr><td><input type="hidden" name="domain" value="<?php echo $domain ?>" /> 48 51 <label for="email"><?php __("Email address"); ?></label></td><td><input class="int" type="text" name="email" id="email" value="<?php echo $email ?>" size="20" maxlength="32" />@<?php echo $domain ?></td></tr> … … 51 54 <tr><td><label for="passconf"><?php __("Confirm password"); ?></label></td><td><input class="int" type="password" name="passconf" id="passconf" value="<?php echo $pass; ?>" size="20" maxlength="32" /></td></tr> 52 55 <tr><td><label for="alias"><?php __("Other recipients"); ?></label></td><td>(<?php __("One email per line"); ?>)<br /><textarea class="int" cols="32" rows="5" name="alias" id="alias"><?php echo $alias; ?></textarea></td></tr> 53 <tr><td colspan="2"><input type=" submit" class="inb" name="submit" value="<?php __("Create this mailbox"); ?>" /></td></tr>56 <tr><td colspan="2"><input type="hidden" name="many" value="<?php echo intval($many); ?>" /><input type="submit" class="inb" name="submit" value="<?php __("Create this mailbox"); ?>" /></td></tr> 54 57 </table> 55 58 </form> … … 57 60 <?php __("help_mail_add"); ?> 58 61 </small></p> 59 60 </body> 61 </html> 62 <script type="text/javascript"> 63 document.forms['main'].email.focus(); 64 </script> 65 <?php include_once("foot.php");
Note: See TracChangeset
for help on using the changeset viewer.
