Highway to PSR2
[openemr.git] / portal / patient / templates / DefaultHome.tpl.php
blob14020b19595aa077fb000b9dcda157cce9d688ff
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('Home'));
25 $this->assign('nav', 'home');
27 $this->display('_Header.tpl.php');
29 <div class="modal fade" id="formdialog" tabindex="-1" role="dialog" aria-hidden="true">
30 <div class="modal-dialog modal-lg" style="background:white">
31 <div class="modal-content">
32 <div class="modal-header">
33 <!-- --><button type="button" class="close" data-dismiss="modal">&times;</button>
34 <h4 class="modal-title"><?php echo xlt('About Your Portal'); ?></h4>
35 </div>
36 </div>
37 <div class="modal-body">
38 <div><span><?php echo xlt('Help content goes here'); ?></span></div>
39 </div>
40 <div class="modal-footer">
41 <button id="okButton" data-dismiss="modal" class="btn btn-secondary"><?php echo xlt('Close'); ?>...</button>
42 </div>
43 </div>
44 </div>
45 <div class="container">
46 <div class='well'>
47 <div class="jumbotron">
48 <h1>
49 <?php echo xlt('Onsite Portal'); ?><i class="fa fa-user-md pull-right" style="font-size:60px;color:red"></i>
50 </h1>
51 <a class="btn btn-primary btn-lg" data-toggle="modal"
52 data-target="#formdialog" href="#"><?php echo xlt('Tell me more'); ?> »</a>
53 </div>
54 </div>
55 <div class='well'>
56 <div class="row">
57 <div class="col-sm-3 col-md-3">
58 <h2>
59 <i class="icon-cogs"></i> <?php echo xlt('Latest Health Alerts'); ?>
60 </h2>
61 </div>
62 <div class="col-sm-3 col-md-3">
63 <h2>
64 <i class="icon-th"></i> <?php echo xlt('The Patients Rights'); ?>
65 </h2>
67 </div>
68 <div class="col-sm-6 col-md-6">
69 <h2>
70 <i class="icon-signin"></i><?php echo xlt('Access Your Medical Records'); ?>
71 </h2>
72 <p></p>
73 <p>
74 <!-- <a class="btn btn-default" href="loginform">Sign In »</a> -->
75 <a class="btn btn-default" href="../index.php"><?php echo xlt('Sign In'); ?> »</a>
76 </p>
77 </div>
79 </div>
80 </div>
81 </div>
82 <!-- /container -->
83 <?php
84 $this->display('_Footer.tpl.php');