New Patient Registration/signup for Patient Portal Two (#1090)
[openemr.git] / portal / patient / templates / DefaultError404.tpl.php
blob1cb01e9eebaebed9eff7827dc93d7f0960cc66fb
1 <?php
2 /**
4 * Copyright (C) 2016-2017 Jerry Padgett <sjpadgett@gmail.com>
6 * LICENSE: This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU Affero General Public License as
8 * published by the Free Software Foundation, either version 3 of the
9 * License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Affero General Public License for more details.
16 * You should have received a copy of the GNU Affero General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 * @package OpenEMR
20 * @author Jerry Padgett <sjpadgett@gmail.com>
21 * @link http://www.open-emr.org
24 $this->assign('title', xlt("Patient Portal") . " | " . xlt("File Not Found"));
25 $this->assign('nav', 'home');
27 $this->display('_Header.tpl.php');
30 <div class="container">
32 <h1><?php echo xlt('Oh Snap!'); ?></h1>
34 <!-- this is used by app.js for scraping -->
35 <!-- ERROR The page you requested was not found /ERROR -->
37 <p><?php echo xlt('The page you requested was not found. Please check that you typed the URL correctly.'); ?></p>
39 </div> <!-- /container -->
41 <?php
42 $this->display('_Footer.tpl.php');