cakephp2-php8/lib/Cake/Test/test_app/View/Layouts/flash.ctp

20 lines
537 B
Text
Raw Normal View History

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
2014-09-18 08:50:35 +00:00
<title><?php echo $pageTitle?></title>
<?php echo $this->Html->charset(); ?>
2012-10-26 22:26:54 +00:00
<?php if (!Configure::read('debug')) { ?>
<meta http-equiv="Refresh" content="<?php echo $pause?>;url=<?php echo $url?>"/>
<?php } ?>
<style><!--
P { text-align:center; font:bold 1.1em sans-serif }
A { color:#444; text-decoration:none }
A:HOVER { text-decoration: underline; color:#44E }
--></style>
</head>
<body>
<p><a href="<?php echo $url?>"><?php echo $message?></a></p>
</body>
2014-09-18 08:50:35 +00:00
</html>