New Patient Registration/signup for Patient Portal Two (#1090)
[openemr.git] / portal / patient / templates / DefaultErrorFatal.tpl.php
blob63324c3d998998e5d21a082a22fde6b5816cb87f
1 <?php
2 /**
4 * Derived from phreeze package
5 * @license http://www.gnu.org/copyleft/lesser.html LGPL
7 */
9 $this->assign('title', xlt('Patient Portal'));
10 $this->assign('nav', 'home');
12 $this->display('_Header.tpl.php');
15 <div class="container">
17 <h1><?php echo xlt('Oh Snap!'); ?></h1>
19 <!-- this is used by app.js for scraping -->
20 <!-- ERROR <?php $this->eprint($this->message); ?> /ERROR -->
22 <h3 onclick="$('#stacktrace').show('slow');" class="well" style="cursor: pointer;"><?php $this->eprint($this->message); ?></h3>
24 <p><?php echo xlt('You may want to try returning to the the previous page and verifying that all fields have been filled out correctly.'); ?></p>
26 <p><?php echo xlt('If you continue to experience this error please contact support.'); ?></p>
28 <div id="stacktrace" class="well hide">
29 <p style="font-weight: bold;"><?php echo xlt('Stack Trace'); ?>:</p>
30 <?php if ($this->stacktrace) { ?>
31 <p style="white-space: nowrap; overflow: auto; padding-bottom: 15px; font-family: courier new, courier; font-size: 8pt;"><pre><?php $this->eprint($this->stacktrace); ?></pre></p>
32 <?php } ?>
33 </div>
35 </div> <!-- /container -->
37 <?php
38 $this->display('_Footer.tpl.php');