You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

29 lines
794 B

<?php
/**
* DefaultError404.tpl.php
*
* @package OpenEMR
* @link https://www.open-emr.org
* @author Jerry Padgett <sjpadgett@gmail.com>
* @copyright Copyright (c) 2016-2017 Jerry Padgett <sjpadgett@gmail.com>
* @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3
*/
$this->assign('title', xlt("Patient Portal") . " | " . xlt("File Not Found"));
?>
<div class="container">
<h1><?php echo xlt('Oh Snap!'); ?></h1>
<!-- this is used by app.js for scraping -->
<!-- ERROR The page you requested was not found /ERROR -->
<p><?php echo xlt('The page you requested was not found. Please check that you typed the URL correctly.'); ?></p>
</div> <!-- /container -->
<?php
$this->display('_Footer.tpl.php');
?>