mirror of
https://github.com/YunoHost-Apps/limesurvey_ynh.git
synced 2024-09-03 19:36:32 +02:00
18 lines
514 B
PHP
18 lines
514 B
PHP
<html>
|
|
<head>
|
|
<title>Not Found</title>
|
|
</head>
|
|
<body>
|
|
<h1>404 Not found.</h1>
|
|
<?php
|
|
echo CHtml::tag('h2', array(), nl2br(CHtml::encode($data['message'])));
|
|
?>
|
|
<p>
|
|
The requested URL was not found on this server.
|
|
If you entered the URL manually please check your spelling and try again.
|
|
</p>
|
|
<p>
|
|
If you think this is a server error, please contact <?php echo $data['admin']; ?>.
|
|
</p>
|
|
</body>
|
|
</html>
|