Changeset 796
- Timestamp:
- 02/22/06 03:49:10 (7 years ago)
- Location:
- bureau/admin
- Files:
-
- 6 edited
-
adm_add.php (modified) (2 diffs)
-
adm_edit.php (modified) (2 diffs)
-
ftp_add.php (modified) (2 diffs)
-
ftp_edit.php (modified) (2 diffs)
-
hta_adduser.php (modified) (2 diffs)
-
sql_list.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bureau/admin/adm_add.php
r504 r796 1 1 <?php 2 2 /* 3 $Id: adm_add.php,v 1. 5 2005/01/19 00:10:08anarcat Exp $3 $Id: adm_add.php,v 1.6 2006/01/12 00:28:20 anarcat Exp $ 4 4 ---------------------------------------------------------------------- 5 5 AlternC - Web Hosting System … … 55 55 <tr> 56 56 <th><label for="pass"><?php __("Initial password"); ?></label></th> 57 <td><input type=" text" id="pass" name="pass" class="int" value="<?php echo $pass; ?>" size="20" maxlength="64" /></td>57 <td><input type="password" id="pass" name="pass" class="int" value="<?php echo $pass; ?>" size="20" maxlength="64" /></td> 58 58 </tr> 59 59 <tr> -
bureau/admin/adm_edit.php
r391 r796 1 1 <?php 2 2 /* 3 $Id: adm_edit.php,v 1. 9 2004/08/27 18:00:18 anonymousExp $3 $Id: adm_edit.php,v 1.10 2006/01/12 00:28:20 anarcat Exp $ 4 4 ---------------------------------------------------------------------- 5 5 AlternC - Web Hosting System … … 75 75 <tr> 76 76 <th><label for="pass"><?php __("Password"); ?></label></th> 77 <td><input type=" text" class="int" id="pass" name="pass" value="" size="20" maxlength="64" /></td>77 <td><input type="password" class="int" id="pass" name="pass" value="" size="20" maxlength="64" /></td> 78 78 </tr> 79 79 <tr> -
bureau/admin/ftp_add.php
r107 r796 1 1 <?php 2 2 /* 3 $Id: ftp_add.php,v 1. 2 2003/06/10 11:18:27 root Exp $3 $Id: ftp_add.php,v 1.3 2006/01/12 00:28:20 anarcat Exp $ 4 4 ---------------------------------------------------------------------- 5 5 AlternC - Web Hosting System … … 54 54 <select class="inl" name="prefixe"><?php $ftp->select_prefix_list($prefixe); ?></select> <b>_</b> <input type="text" class="int" name="login" id="login" value="<?php echo $login; ?>" size="20" maxlength="64" /> 55 55 </td></tr> 56 <tr><th><label for="pass"><?php __("Password"); ?></label></th><td><input type=" text" class="int" name="pass" id="pass" value="<?php echo $pass; ?>" size="20" maxlength="64" /></td></tr>56 <tr><th><label for="pass"><?php __("Password"); ?></label></th><td><input type="passwordt" class="int" name="pass" id="pass" value="<?php echo $pass; ?>" size="20" maxlength="64" /></td></tr> 57 57 <tr><th><label for="dir"><?php __("Folder"); ?></label></th><td><input type="text" class="int" name="dir" id="dir" value="<?php echo $dir; ?>" size="20" maxlength="255" /> 58 58 <script type="text/javascript"> -
bureau/admin/ftp_edit.php
r109 r796 1 1 <?php 2 2 /* 3 $Id: ftp_edit.php,v 1. 3 2003/06/10 13:16:11 root Exp $3 $Id: ftp_edit.php,v 1.4 2006/01/12 00:28:20 anarcat Exp $ 4 4 ---------------------------------------------------------------------- 5 5 AlternC - Web Hosting System … … 56 56 <select class="inl" name="prefixe"><?php $ftp->select_prefix_list($r["prefixe"]); ?></select> <b>_</b> <input type="text" class="int" name="login" id="login" value="<?php echo $r["login"]; ?>" size="20" maxlength="64" /> 57 57 </td></tr> 58 <tr><th><label for="pass"><?php __("Password"); ?></label></th><td><input type=" text" class="int" name="pass" id="pass" value="<?php echo $r["pass"]; ?>" size="20" maxlength="64" /></td></tr>58 <tr><th><label for="pass"><?php __("Password"); ?></label></th><td><input type="password" class="int" name="pass" id="pass" value="<?php echo $r["pass"]; ?>" size="20" maxlength="64" /></td></tr> 59 59 <tr><th><label for="rep"><?php __("Folder"); ?></label></th><td><input type="text" class="int" name="rep" id="rep" value="<?php echo $r["dir"]; ?>" size="20" maxlength="64" /> 60 60 -
bureau/admin/hta_adduser.php
r109 r796 1 1 <?php 2 2 /* 3 $Id: hta_adduser.php,v 1. 4 2003/06/10 13:16:11 root Exp $3 $Id: hta_adduser.php,v 1.5 2006/01/12 00:28:20 anarcat Exp $ 4 4 ---------------------------------------------------------------------- 5 5 AlternC - Web Hosting System … … 47 47 <?php __("Folder"); ?></td><td><code><?php echo $dir; ?></code></td></tr> 48 48 <tr><td><label for="user"><?php __("Username"); ?></label></td><td><input type="text" class="int" name="user" id="user" value="" size="20" maxlength="64" /></td></tr> 49 <tr><td><label for="password"><?php __("Password"); ?></label></td><td><input type=" text" class="int" name="password" id="password" value="" size="20" maxlength="64" /></td></tr>49 <tr><td><label for="password"><?php __("Password"); ?></label></td><td><input type="password" class="int" name="password" id="password" value="" size="20" maxlength="64" /></td></tr> 50 50 <tr><td colspan="2"><input type="submit" class="inb" value="<?php __("Add this user"); ?>" /></td></tr> 51 51 </table> -
bureau/admin/sql_list.php
r693 r796 1 1 <?php 2 2 /* 3 $Id: sql_list.php,v 1. 6 2005/05/27 20:46:26 arnaud-lbExp $3 $Id: sql_list.php,v 1.7 2006/01/12 00:28:20 anarcat Exp $ 4 4 ---------------------------------------------------------------------- 5 5 AlternC - Web Hosting System … … 95 95 <table cellspacing="0" cellpadding="4"> 96 96 <tr class="lst2"><th><?php __("Username"); ?></th><td><code><?php echo $mem->user["uid"]; ?></code></td></tr> 97 <tr class="lst1"><th><label for="pass"><?php __("Password"); ?></label></th><td><code><input class="int" type=" text" name="pass" id="pass" value="" /></code></td></tr>97 <tr class="lst1"><th><label for="pass"><?php __("Password"); ?></label></th><td><code><input class="int" type="password" name="pass" id="pass" value="" /></code></td></tr> 98 98 <tr class="lst2"><th><?php __("SQL Server"); ?></th><td><code><?php echo $mysql->server; ?></code></td></tr> 99 99 <tr class="lst1"><th><?php __("Database"); ?></th><td><code><?php echo $mem->user["login"]; ?></code></td></tr>
Note: See TracChangeset
for help on using the changeset viewer.
