change_password.php
changeset 71 e1b918eaf69a
parent 51 e9df1dd6dd1f
child 79 0c0aa144356a
equal deleted inserted replaced
70:47248e2af079 71:e1b918eaf69a
    33 	}
    33 	}
    34 }
    34 }
    35 
    35 
    36 include_once("inc/header.inc.php");
    36 include_once("inc/header.inc.php");
    37 ?>
    37 ?>
    38     <h2><? echo _('Change password'); ?></h2>
    38     <h2><?php echo _('Change password'); ?></h2>
    39     <form method="post" action="change_password.php">
    39     <form method="post" action="change_password.php">
    40      <table border="0" CELLSPACING="4">
    40      <table border="0" CELLSPACING="4">
    41       <tr>
    41       <tr>
    42        <td class="n"><? echo _('Current password'); ?>:</td>
    42        <td class="n"><?php echo _('Current password'); ?>:</td>
    43        <td class="n"><input type="password" class="input" NAME="currentpass" value=""></td>
    43        <td class="n"><input type="password" class="input" NAME="currentpass" value=""></td>
    44       </tr>
    44       </tr>
    45       <tr>
    45       <tr>
    46        <td class="n"><? echo _('New password'); ?>:</td>
    46        <td class="n"><?php echo _('New password'); ?>:</td>
    47        <td class="n"><input type="password" class="input" NAME="newpass" value=""></td>
    47        <td class="n"><input type="password" class="input" NAME="newpass" value=""></td>
    48       </tr>
    48       </tr>
    49       <tr>
    49       <tr>
    50        <td class="n"><? echo _('New password'); ?>:</td>
    50        <td class="n"><?php echo _('New password'); ?>:</td>
    51        <td class="n"><input type="password" class="input" NAME="newpass2" value=""></td>
    51        <td class="n"><input type="password" class="input" NAME="newpass2" value=""></td>
    52       </tr>
    52       </tr>
    53       <tr>
    53       <tr>
    54        <td class="n">&nbsp;</td>
    54        <td class="n">&nbsp;</td>
    55        <td class="n">
    55        <td class="n">
    56         <input type="submit" class="button" NAME="submit" value="<? echo _('Change password'); ?>">
    56         <input type="submit" class="button" NAME="submit" value="<?php echo _('Change password'); ?>">
    57        </td>
    57        </td>
    58       </tr>
    58       </tr>
    59      </table>
    59      </table>
    60     </form>
    60     </form>
    61 
    61 
    62 <?
    62 <?php
    63 include_once("inc/footer.inc.php");
    63 include_once("inc/footer.inc.php");
    64 ?>
    64 ?>