2 /* vim: set expandtab sw=4 ts=4 sts=4: */
4 * Displays form for password change
9 // loic1: autocomplete feature of IE kills the "onchange" event handler and it
10 // must be replaced by the "onpropertychange" one in this case
11 $chg_evt_handler = (PMA_USR_BROWSER_AGENT
== 'IE' && PMA_USR_BROWSER_VER
>= 5)
17 <form method
="post" action
="<?php echo $GLOBALS['PMA_PHP_SELF']; ?>" name
="chgPassword" onsubmit
="return checkPassword(this)">
18 <?php
echo PMA_generate_common_hidden_inputs();
19 if (strpos($GLOBALS['PMA_PHP_SELF'], 'server_privileges') !== false) {
20 echo '<input type="hidden" name="username" value="' . htmlspecialchars($username) . '" />' . "\n"
21 . '<input type="hidden" name="hostname" value="' . htmlspecialchars($hostname) . '" />' . "\n";
23 <fieldset id
="fieldset_change_password">
24 <legend
><?php
echo $GLOBALS['strChangePassword']; ?
></legend
>
26 <tr
class="odd noclick">
28 <input type
="radio" name
="nopass" value
="1" onclick
="pma_pw.value = ''; pma_pw2.value = ''; this.checked = true" />
29 <?php
echo $GLOBALS['strNoPassword'] . "\n"; ?
>
32 <tr
class="even noclick">
34 <input type
="radio" name
="nopass" value
="0" onclick
="document.getElementById('pw_pma_pw').focus();" checked
="checked " />
35 <?php
echo $GLOBALS['strPassword']; ?
>: 
;
38 <input type
="password" name
="pma_pw" id
="pw_pma_pw" size
="10" class="textfield" <?php
echo $chg_evt_handler; ?
>="nopass[1].checked = true" />
40 <?php
echo $GLOBALS['strReType']; ?
>: 
;
41 <input type
="password" name
="pma_pw2" id
="pw_pma_pw2" size
="10" class="textfield" <?php
echo $chg_evt_handler; ?
>="nopass[1].checked = true" />
46 if (PMA_MYSQL_INT_VERSION
>= 40102) {
50 <?php
echo $strPasswordHashing; ?
>:
53 <input type
="radio" name
="pw_hash" id
="radio_pw_hash_new" value
="new" checked
="checked" />
54 <label
for="radio_pw_hash_new">
62 <input type
="radio" name
="pw_hash" id
="radio_pw_hash_old" value
="old" />
63 <label
for="radio_pw_hash_old">
64 <?php
echo $strCompatibleHashing; ?
>
73 <fieldset id
="fieldset_change_password_footer" class="tblFooters">
74 <input type
="submit" name
="change_pw" value
="<?php echo($strGo); ?>" />