1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php if (!defined('WEBPATH')) die(); ?> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <?php zp_apply_filter('theme_head'); ?> <title><?php echo gettext("Password required"); ?></title> <meta http-equiv="content-type" content="text/html; charset=<?php echo LOCAL_CHARSET; ?>" /> <link rel="stylesheet" href="<?php echo WEBPATH.'/'.ZENFOLDER; ?>/admin.css" type="text/css" /> </head>
<body> <?php printPasswordForm($hint, $show); ?> <div id="credit"> <?php printZenphotoLink(); ?> </div> </body> </html>
|