.
*/
include('functions.php');
session_start();
$VIEW_CIPHERED_PASSWORDS=true;
$mkey = (isset($_POST['mkey'])) ? $_POST['mkey'] : "";
$user = (isset($_POST['user'])) ? $_POST['user'] : "";
?>
" . (count($entries) - $nb_ciphered) . " unciphered password(s)
";
foreach($entries as $entry)
{
if ($entry['ciphered'] == 1) continue;
echo '';
}
echo "
";
echo "$nb_ciphered ciphered password(s)
";
if ($VIEW_CIPHERED_PASSWORDS)
{
foreach($entries as $entry)
{
if ($entry['ciphered'] == 0) continue;
echo '';
}
}
}
?>
Add a new password
";
echo '';
}
?>