This commit is contained in:
Olusesan Ameye
2020-09-07 10:33:03 -04:00
parent c2d2897ad8
commit 4c6d4d98f0
401 changed files with 47976 additions and 1 deletions
+1
View File
@@ -0,0 +1 @@
require('./bootstrap');
+28
View File
@@ -0,0 +1,28 @@
window._ = require('lodash');
/**
* We'll load the axios HTTP library which allows us to easily issue requests
* to our Laravel back-end. This library automatically handles sending the
* CSRF token as a header based on the value of the "XSRF" token cookie.
*/
window.axios = require('axios');
window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';
/**
* Echo exposes an expressive API for subscribing to channels and listening
* for events that are broadcast by Laravel. Echo and event broadcasting
* allows your team to easily build robust real-time web applications.
*/
// import Echo from 'laravel-echo';
// window.Pusher = require('pusher-js');
// window.Echo = new Echo({
// broadcaster: 'pusher',
// key: process.env.MIX_PUSHER_APP_KEY,
// cluster: process.env.MIX_PUSHER_APP_CLUSTER,
// forceTLS: true
// });
+19
View File
@@ -0,0 +1,19 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Authentication Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used during authentication for various
| messages that we need to display to the user. You are free to modify
| these language lines according to your application's requirements.
|
*/
'failed' => 'These credentials do not match our records.',
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
];
+19
View File
@@ -0,0 +1,19 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Pagination Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the paginator library to build
| the simple pagination links. You are free to change them to anything
| you want to customize your views to better match your application.
|
*/
'previous' => '&laquo; Previous',
'next' => 'Next &raquo;',
];
+22
View File
@@ -0,0 +1,22 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Password Reset Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are the default lines which match reasons
| that are given by the password broker for a password update attempt
| has failed, such as for an invalid token or invalid new password.
|
*/
'reset' => 'Your password has been reset!',
'sent' => 'We have emailed your password reset link!',
'throttled' => 'Please wait before retrying.',
'token' => 'This password reset token is invalid.',
'user' => "We can't find a user with that email address.",
];
+151
View File
@@ -0,0 +1,151 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Validation Language Lines
|--------------------------------------------------------------------------
|
| The following language lines contain the default error messages used by
| the validator class. Some of these rules have multiple versions such
| as the size rules. Feel free to tweak each of these messages here.
|
*/
'accepted' => 'The :attribute must be accepted.',
'active_url' => 'The :attribute is not a valid URL.',
'after' => 'The :attribute must be a date after :date.',
'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
'alpha' => 'The :attribute may only contain letters.',
'alpha_dash' => 'The :attribute may only contain letters, numbers, dashes and underscores.',
'alpha_num' => 'The :attribute may only contain letters and numbers.',
'array' => 'The :attribute must be an array.',
'before' => 'The :attribute must be a date before :date.',
'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
'between' => [
'numeric' => 'The :attribute must be between :min and :max.',
'file' => 'The :attribute must be between :min and :max kilobytes.',
'string' => 'The :attribute must be between :min and :max characters.',
'array' => 'The :attribute must have between :min and :max items.',
],
'boolean' => 'The :attribute field must be true or false.',
'confirmed' => 'The :attribute confirmation does not match.',
'date' => 'The :attribute is not a valid date.',
'date_equals' => 'The :attribute must be a date equal to :date.',
'date_format' => 'The :attribute does not match the format :format.',
'different' => 'The :attribute and :other must be different.',
'digits' => 'The :attribute must be :digits digits.',
'digits_between' => 'The :attribute must be between :min and :max digits.',
'dimensions' => 'The :attribute has invalid image dimensions.',
'distinct' => 'The :attribute field has a duplicate value.',
'email' => 'The :attribute must be a valid email address.',
'ends_with' => 'The :attribute must end with one of the following: :values.',
'exists' => 'The selected :attribute is invalid.',
'file' => 'The :attribute must be a file.',
'filled' => 'The :attribute field must have a value.',
'gt' => [
'numeric' => 'The :attribute must be greater than :value.',
'file' => 'The :attribute must be greater than :value kilobytes.',
'string' => 'The :attribute must be greater than :value characters.',
'array' => 'The :attribute must have more than :value items.',
],
'gte' => [
'numeric' => 'The :attribute must be greater than or equal :value.',
'file' => 'The :attribute must be greater than or equal :value kilobytes.',
'string' => 'The :attribute must be greater than or equal :value characters.',
'array' => 'The :attribute must have :value items or more.',
],
'image' => 'The :attribute must be an image.',
'in' => 'The selected :attribute is invalid.',
'in_array' => 'The :attribute field does not exist in :other.',
'integer' => 'The :attribute must be an integer.',
'ip' => 'The :attribute must be a valid IP address.',
'ipv4' => 'The :attribute must be a valid IPv4 address.',
'ipv6' => 'The :attribute must be a valid IPv6 address.',
'json' => 'The :attribute must be a valid JSON string.',
'lt' => [
'numeric' => 'The :attribute must be less than :value.',
'file' => 'The :attribute must be less than :value kilobytes.',
'string' => 'The :attribute must be less than :value characters.',
'array' => 'The :attribute must have less than :value items.',
],
'lte' => [
'numeric' => 'The :attribute must be less than or equal :value.',
'file' => 'The :attribute must be less than or equal :value kilobytes.',
'string' => 'The :attribute must be less than or equal :value characters.',
'array' => 'The :attribute must not have more than :value items.',
],
'max' => [
'numeric' => 'The :attribute may not be greater than :max.',
'file' => 'The :attribute may not be greater than :max kilobytes.',
'string' => 'The :attribute may not be greater than :max characters.',
'array' => 'The :attribute may not have more than :max items.',
],
'mimes' => 'The :attribute must be a file of type: :values.',
'mimetypes' => 'The :attribute must be a file of type: :values.',
'min' => [
'numeric' => 'The :attribute must be at least :min.',
'file' => 'The :attribute must be at least :min kilobytes.',
'string' => 'The :attribute must be at least :min characters.',
'array' => 'The :attribute must have at least :min items.',
],
'not_in' => 'The selected :attribute is invalid.',
'not_regex' => 'The :attribute format is invalid.',
'numeric' => 'The :attribute must be a number.',
'password' => 'The password is incorrect.',
'present' => 'The :attribute field must be present.',
'regex' => 'The :attribute format is invalid.',
'required' => 'The :attribute field is required.',
'required_if' => 'The :attribute field is required when :other is :value.',
'required_unless' => 'The :attribute field is required unless :other is in :values.',
'required_with' => 'The :attribute field is required when :values is present.',
'required_with_all' => 'The :attribute field is required when :values are present.',
'required_without' => 'The :attribute field is required when :values is not present.',
'required_without_all' => 'The :attribute field is required when none of :values are present.',
'same' => 'The :attribute and :other must match.',
'size' => [
'numeric' => 'The :attribute must be :size.',
'file' => 'The :attribute must be :size kilobytes.',
'string' => 'The :attribute must be :size characters.',
'array' => 'The :attribute must contain :size items.',
],
'starts_with' => 'The :attribute must start with one of the following: :values.',
'string' => 'The :attribute must be a string.',
'timezone' => 'The :attribute must be a valid zone.',
'unique' => 'The :attribute has already been taken.',
'uploaded' => 'The :attribute failed to upload.',
'url' => 'The :attribute format is invalid.',
'uuid' => 'The :attribute must be a valid UUID.',
/*
|--------------------------------------------------------------------------
| Custom Validation Language Lines
|--------------------------------------------------------------------------
|
| Here you may specify custom validation messages for attributes using the
| convention "attribute.rule" to name the lines. This makes it quick to
| specify a specific custom language line for a given attribute rule.
|
*/
'custom' => [
'attribute-name' => [
'rule-name' => 'custom-message',
],
],
/*
|--------------------------------------------------------------------------
| Custom Validation Attributes
|--------------------------------------------------------------------------
|
| The following language lines are used to swap our attribute placeholder
| with something more reader friendly such as "E-Mail Address" instead
| of "email". This simply helps us make our message more expressive.
|
*/
'attributes' => [],
];
+1
View File
@@ -0,0 +1 @@
//
+68
View File
@@ -0,0 +1,68 @@
@extends('layouts.master')
@section('content')
<!-- Start Outter Wrapper -->
<div class="outter-wrapper feature map">
<iframe width="100" height="150" src="https://maps.google.com.au/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=San+Diego,+CA,+United+States&amp;aq=0&amp;oq=san+die&amp;sll=-25.335448,135.745076&amp;sspn=83.735932,130.605469&amp;ie=UTF8&amp;hq=&amp;hnear=San+Diego,+California,+United+States&amp;ll=32.715329,-117.157255&amp;spn=0.164801,0.255089&amp;t=m&amp;z=13&amp;output=embed"></iframe>
</div>
<!-- End Outter Wrapper -->
<!-- Start Outter Wrapper -->
<div class="outter-wrapper">
<!-- Start Main Body -->
<div class="main-container">
<div class="main wrapper clearfix">
<!-- Start Main Content -->
<div class="main-content three-fourths">
<h1>Get in touch</h1>
<p class="lead">We'd love to hear from you! Give us a call, send us an email or drop us a message with the form below. </p>
<!-- Start Form -->
<form id="contactform" action="/contact" method="post">
<table class="tableless">
<tr><td><input type="text" id="name" name="name" placeholder="What's your name" /></td></tr>
<tr><td><input type="email" id="email" name="email" placeholder="Email goes here" /></td></tr>
<tr><td><textarea id="message" name="message" rows="5" cols="20" placeholder="Whats this about?"></textarea></td></tr>
<tr><td>
<input name="button" class="btn" type="submit" value="Send Message" id="send" /><br/></td></tr>
</table>
</form>
<div id="response"></div>
<!-- Finish Main Content -->
</div>
<!-- Start Main Sidebar -->
<aside class="right-aside fourth last">
<h3>Find us at</h3>
<ul>
<li><a href="#">facebook.com/mermsemr</a></li>
<li><a href="#">Twitter.com/mermemr</a></li>
<li>
USA: 2451 Cumberland Pkwy Ste. 3570 Atlanta,GA 30339. Ph: +1 (404) 855 7966<br>
LAGOS: 8A Saka Tinubu Street, Victoria Island, Lagos. Ph: +234 (909)4642915
</li>
</ul>
</aside>
<!-- Finish Sidebar -->
</div> <!-- #main -->
</div> <!-- #main-container -->
</div>
@stop
@@ -0,0 +1,168 @@
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<!--[if IE]><meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"><![endif]-->
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<meta content="black" name="apple-mobile-web-app-status-bar-style">
<title>MermsEMR - Medical Encounter Record System</title>
<meta name="description" content="Enter Description">
<link rel="stylesheet" type="text/css" href="/css/normalize.min.css">
<link rel="stylesheet" type="text/css" href="/css/main.css">
<!-- Remove responsive.css is non-responsive needed -->
<link rel="stylesheet" type="text/css" href="/css/responsive.css">
<link rel="stylesheet" type="text/css" href="/css/flexslider.css">
<link rel="stylesheet" type="text/css" href="/css/font-awesome.css">
<link rel="stylesheet" type="text/css" href="/js/fancybox/jquery.fancybox.css?v=2.1.4" media="screen" />
<link rel="stylesheet" type="text/css" href="/rs-plugin/css/settings.css" media="screen" />
<script src="js/vendor/modernizr-2.6.2-respond-1.1.0.min.js"></script>
</head>
<body>
<!--[if lt IE 7]>
<p class="chromeframe">You are using an outdated browser. <a href="http://browsehappy.com/">Upgrade your browser today</a> or <a href="http://www.google.com/chromeframe/?redirect=true">install Google Chrome Frame</a> to better experience this site.</p>
<![endif]-->
<!-- Start Outter Wrapper -->
<div class="outter-wrapper header-container">
<!-- Start Main Navigation -->
<div class="wrapper">
<header class="clearfix">
<a href="/" class="logo"><img src="/img/logo@2x.png" alt="Logo" /></a>
<nav id="nav-wrap">
<ul class="nav" id="nav">
<li class="nav-parent"><a class="active" href="/">Home</a>
</li>
<li class="nav-parent"><a href="/product">Services</a>
</li>
<li><a href="/contact">Contact</a></li>
<!-- li class="last donate"><a href="/pricing">Pricing</a></li -->
</ul>
</nav>
</header>
</div>
<!-- End Main Navigation -->
</div>
<!-- End Outter Wrapper -->
@yield('content')
<!-- /////////////////// -->
<!-- Start Widget Footer -->
<div class="outter-wrapper widget-footer main clearfix">
<div class="wrapper clearfix">
<!-- Start Column -->
<div class="fifth widget">
<h3>MERMS</h3>
<p>An EHR that is easy to use, but you and your health goals first. MERMS letting provider performs what is needed with complete focus on patients. </p>
</div>
<!-- Start Column -->
<div class="fifth widget">
<h3>Stay Informed</h3>
<p>Stay up-to-date on health news - get our latest health news by email.</p>
<input type="email" placeholder="Email" name="" value="" />
<input type="submit" class="btn small-btn" name="" value="Get Updates" />
</div>
<!-- Start Column -->
<div class="fifth widget">
<h3>Organisation</h3>
<p><strong>MERMS EHR</strong><br/>
<b style="color:red;">USA:</b> 2451 Cumberland Pkwy Ste. 3570 Atlanta,GA 30339. Ph: +1 (404) 855 7966<br>
<b style="color:red;">LAGOS:</b> 8A Saka Tinubu Street, Victoria Island, Lagos. Ph: +234 (909)4642915</p>
</div>
<!-- Start Column -->
<div class="fifth widget">
<h3>Latest Tweet</h3>
<p class="tweet">Donec id porta gravida at eget <a href="#">#metus #metus</a> auctor fringilla donec id elit non mi porta.</p>
</div>
<!-- Start Column -->
<div class="fifth widget last">
<h3>Learn More</h3>
<ul>
<li><a href="https://provider.mermsemr.com">Providers</a></li>
<li><a href="https://myfit.mermsemr.com">myFit App</a></li>
<li><a href="/contact">Contact</a></li>
<li><a href="/team">Team</a></li>
</ul>
</div>
</div>
</div>
<!-- End Widget Footer -->
<!-- /////////////////// -->
<!-- Start Footer -->
<footer class="outter-wrapper feature">
<div class="wrapper">
<div class="clearfix">
<div class="foot right">
<!-- Social Media icons -->
<ul class="social-link">
<li><a href="https://www.facebook.com/Mermsemr-381924675740341"><em class="icon-facebook-sign"></em></a></li>
<li><a href="#"><em class="icon-twitter-sign"></em></a></li>
</ul>
</div>
<!-- Copyright Info -->
<div class="foot left">&copy; Copyright MermsEMR 2020</div>
</div>
</div>
</footer>
<!-- End Footer -->
<!-- /////////////////// -->
<!-- Start Scripts -->
<script type="text/javascript" src="js/vendor/jquery-1.8.3.min.js"></script>
<script type="text/javascript" src="js/fitvids.min.js"></script>
<script type="text/javascript" src="js/fancybox/jquery.fancybox.js?v=2.1.4"></script>
<script type="text/javascript" src="js/placeholder.js"></script>
<script type="text/javascript" src="js/jquery.flexslider-min.js"></script>
<script type="text/javascript" src="js/mosaic.1.0.1.min.js"></script>
<script type="text/javascript" src="js/cleantabs.jquery.js"></script>
<script type="text/javascript" src="rs-plugin/js/jquery.themepunch.plugins.min.js"></script>
<script type="text/javascript" src="rs-plugin/js/jquery.themepunch.revolution.min.js"></script>
<script type="text/javascript" src="js/rs-slider.js"></script>
<script type="text/javascript" src="js/jquery.stellar.min.js"></script>
<script type="text/javascript" src="js/jquery.scrollUp.min.js"></script>
<script type="text/javascript" src="js/selectivizr-min.js"></script>
<script type="text/javascript" src="js/fittext.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<!-- Start Google Analytics -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-139179419-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-139179419-1');
</script>
</body>
</html>
+138
View File
@@ -0,0 +1,138 @@
@extends('layouts.master')
@section('content')
<!-- /////////////////// -->
<!-- Start Feature Wrapper -->
<div class="outter-wrapper feature">
<hr/>
</div>
<!-- End Feature Wrapper -->
<?php
$basic_group =[
'Scheduing',
'Patient Reminder',
'Health Tracking',
'100 patient'
];
$prof_group =[
'Auto Re-Scheduing',
'Family Account',
'Patient App Link'
];
?>
<div class="outter-wrapper">
<!-- Start Main Body -->
<div class="main-container">
<div class="main wrapper clearfix">
<!-- Start Main Content -->
<div class="main-content">
<h1>Pricing</h1>
<p class="lead">Make a donation today to help our cause. Below are several key area's in which we need your support and your donations. Integer posuere erat a ante venenatis dapibus posuere velit aliquet.</p>
<hr/>
<div class="clearfix">
<!-- Start Price -->
<div class="third price">
<h3>Starter<span>Free</span></h3>
<div class="price-detail">
<p><em>Get Started fast with your basic practice need.</em></p>
<ul>
<?php
foreach($basic_group as $dt ){
echo "<li>".$dt."</li>";
}
?>
</ul>
<a class="btn">Start Today</a>
</div>
</div>
<!-- Start Price -->
<div class="third price price-feature">
<h3>Professionals<span>$22</span></h3>
<div class="price-detail">
<p><em>Everything from "Starter" plus more.</em></p>
<ul>
<?php
foreach($prof_group as $dt ){
echo "<li>".$dt."</li>";
}
?>
<li>Photo Updates</li>
<li>Avatar on Site</li>
<li>Kause Newsletter</li>
</ul>
<a class="btn green-btn">Start Now</a>
</div>
</div>
<!-- Start Price -->
<div class="third price last">
<h3>Enterprise<span><a class="btn btn-sx">Contact Us</a></span></h3>
<div class="price-detail">
<p><em>Everything from "Professional" plus more.</em></p>
<ul>
<li>One Off Donation</li>
<li>Photo Updates</li>
<li>Kause Newsletter</li>
<li>Avatar on Site</li>
<li>10kg Trash Removal</li>
</ul>
<a class="btn">Contact Us</a>
</div>
</div>
</div>
<hr/>
<!-- Message Box -->
<div class="message promo clearfix">
<h4>Something else? Want to make a custom solution? <a href="/contact"><span>Make Custom Request</span></a></h4>
</div>
<!-- /////////////////// -->
<!-- Start FAQ -->
<div class="clearfix">
<div class="text-seperator">
<h5>Frequent Questions</h5>
</div>
<div class="half">
<h5>Can I upgarde more than once?</h5>
<p>Nulla vitae elit libero, a pharetra augue. Vestibulum id ligula porta felis euismod sit amet ferment umper.</p>
<h5>What is the payment method?</h5>
<p>Donec sed odio duiulla vitae elit libero, a pharetra augue. Vestibulum id ligula porta felis euismod semper.</p>
</div>
<div class="half last">
<h5>Can I merge practice togerther?</h5>
<p>Cras mattis consectetur purus sit amet fermentum a pharetra augue. Vestibulum id ligula porta felis euismod semper.</p>
<h5>How can I see status updates?</h5>
<p>Sed posuere consectetur est at lobortis. Donec sed odio dui. Nulla vitae elit libero, a pharetra augue. Vestibulum id ligula portafel.</p>
</div>
</div>
<!-- Finish Main Content -->
</div>
</div> <!-- #main -->
</div> <!-- #main-container -->
</div>
@stop
+140
View File
@@ -0,0 +1,140 @@
@extends('layouts.master')
@section('content')
<!-- /////////////////// -->
<!-- Start Feature Wrapper -->
<div class="outter-wrapper feature">
<hr/>
</div>
<!-- End Feature Wrapper -->
<!-- Start Main Navigation -->
<div class="outter-wrapper">
<!-- Start Main Body -->
<div class="main-container">
<div class="main wrapper clearfix">
<!-- Start Main Content -->
<div class="main-content three-fourths">
<!-- Start Post -->
<!-- Start Post -->
<div class="clearfix">
<h1 class="four-fifths right last"><a href="https://provider.mermsemr.com/">MERMS-Providers</a></h1>
<!-- Start Meta -->
<aside class="left-aside left fifth">
<ul class="meta">
<li><a href="https://provider.mermsemr.com/">Providers</a></li>
</ul>
</aside>
<div class="four-fifths right last">
<!-- Start Slider -->
<div class="flexslider">
<ul class="slides">
<li><img src="img/prov1.jpg" alt="Merms Providers" /></li>
<li><img src="img/practice-slide2-merms.jpg" alt="Merms Providers" /></li>
</ul>
</div>
<p>MermsEMR is a unified suite of software solutions designed for m healthcare organizations and independent physician practices. Features include practice management, electronic health records, medical billing, patient engagement tools, telemedicine functionality, patient charts, reputation management.</p>
<p><a href="https://provider.mermsemr.com/" class="btn">Learn More</a></p>
</div>
</div>
<hr/>
<!-- Start Post -->
<!-- Start Post -->
<div class="clearfix">
<h1 class="four-fifths right last"><a href="https://myfit.mermsemr.com/">MyFit - Personal Health Care</a></h1>
<!-- Start Meta -->
<aside class="left-aside left fifth">
<ul class="meta">
<li><a href="https://myfit.mermsemr.com/">visit myFit</a></li>
</ul>
</aside>
<div class="four-fifths right last">
<!-- Start Mosaic -->
<div class="mosaic-block fade">
<a href="img/user-product.jpg" class="mosaic-overlay link fancybox" title="merms MyFit"></a>
<div class="mosaic-backdrop"><img src="img/user-product.jpg" alt="Mock" /></div>
</div>
<p>myFit is your personal health care concierge. this app helps you to manage the intricacies of your daily and long term health activities. With myFit, your health record is yours at all point, you decide your provider access as needed from time to time. </p>
<p><a href="https://myfit.mermsemr.com/" class="btn">Learn More</a></p>
</div>
</div>
<hr/>
<!-- Finish Main Content -->
</div>
<!-- Start Main Sidebar -->
<aside class="right-aside fourth last">
<h3>Sidebar Title</h3>
<p>Donec id elilit non mi porta gravida at eget metus. Donec ullamcorper nulla non metus auctor fringilla. Donec id elit non mi porta gravida at eget metus. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor.</p>
<hr/>
<!-- /////////////////// -->
<!-- Start Gallery Widget -->
<h3>Screens</h3>
<div class="clearfix gallery">
<!-- Start thumbnail -->
<div class="mosaic-block half fade">
<a href="img/thumb-1.jpg" class="mosaic-overlay fancybox" data-fancybox-group="gallery" title="Insert Your Title"></a>
<div class="mosaic-backdrop"><img src="img/thumb-1.jpg" alt="Mock" /></div>
</div>
<!-- Start thumbnail -->
<div class="mosaic-block half last fade">
<a href="img/thumb-2.jpg" class="mosaic-overlay fancybox" data-fancybox-group="gallery" title="Insert Your Title"></a>
<div class="mosaic-backdrop"><img src="img/thumb-2.jpg" alt="Mock" /></div>
</div>
<!-- Start thumbnail -->
<div class="mosaic-block half fade">
<a href="img/thumb-3.jpg" class="mosaic-overlay fancybox" data-fancybox-group="gallery" title="Insert Your Title"></a>
<div class="mosaic-backdrop"><img src="img/thumb-3.jpg" alt="Mock" /></div>
</div>
<!-- Start thumbnail -->
<div class="mosaic-block half last fade">
<a href="img/thumb-4.jpg" class="mosaic-overlay fancybox" data-fancybox-group="gallery" title="Insert Your Title"></a>
<div class="mosaic-backdrop"><img src="img/thumb-4.jpg" alt="Mock" /></div>
</div>
<!-- Start thumbnail -->
<div class="mosaic-block half fade">
<a href="img/thumb-5.jpg" class="mosaic-overlay fancybox" data-fancybox-group="gallery" title="Insert Your Title"></a>
<div class="mosaic-backdrop"><img src="img/thumb-5.jpg" alt="Mock" /></div>
</div>
<!-- Start thumbnail -->
<div class="mosaic-block half last fade">
<a href="img/thumb-6.jpg" class="mosaic-overlay fancybox" data-fancybox-group="gallery" title="Insert Your Title"></a>
<div class="mosaic-backdrop"><img src="img/thumb-6.jpg" alt="Mock" /></div>
</div>
</div>
<hr/>
</aside>
<!-- Finish Sidebar -->
</div> <!-- #main -->
</div> <!-- #main-container -->
</div>
@stop
+118
View File
@@ -0,0 +1,118 @@
@extends('layouts.master')
@section('content')
<!-- /////////////////// -->
<!-- Start Feature Wrapper -->
<div class="outter-wrapper feature">
<hr/>
</div>
<!-- End Feature Wrapper -->
<div class="outter-wrapper">
<!-- Start Main Body -->
<div class="main-container">
<div class="main wrapper clearfix">
<!-- Start Main Content -->
<div class="main-content">
<div class="text-seperator">
<h5>About Our Team</h5>
</div>
<div class="clearfix">
<div class="half">
<h4>Culture</h4>
<p> Working in the medical field and also being a patient sometimes, it was all too common to have the feeling of being managed through a process of care that respects the hospitals more than you, the consumer, the patients grumble. This is why we created MERMs systems.</p>
<p>Donec sed odio dui. Aenean lacinia bibendum nulla sed consectetur. Etiam porta sem malesuada magna mollis euismod. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Donec ullamcorper nulla non metus auctor fringilla. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>
</div>
<div class="half last">
<h4>More...s</h4>
<p>Cras justo odio, dapibus ac facilisis in, egestas eget quam. Sed posuere consectetur est at lobortis. Maecenas faucibus mollis interdum. Cras mattis consectetur purus sit amet fermentum. Vestibulum id ligula porta felis euismod semper.</p>
</div>
</div>
<div class="text-seperator">
<h5>Merms Team</h5>
</div>
<p class="lead">Our Team is the best around. Maecenas sed diam eget risus varius blandit sit amet non magna. Nullam quis risus eget urna mollis ornare vel eu leo.</p>
<div class="clearfix">
<div class="fourth boxed">
<img src="img/drSanya.jpg" alt="Mock" />
<div class="inner-box">
<h4>Dr. Sanya Ameye</h4>
<h5>President</h5>
<em>Nulla vitae elit libero, a pharetra augue. Nullam id dolor id nibh ultri cies cula.</em>
<ul class="social-link">
<li><a href="#"><em class="icon-linkedin-sign"></em></a></li>
<li><a href="#"><em class="icon-twitter-sign"></em></a></li>
</ul>
</div>
</div>
<!-- div class="fourth boxed">
<img src="img/thumb-9.jpg" alt="Mock" />
<div class="inner-box">
<h4>Micky Dora</h4>
<h5>Vice President</h5>
<em>Pharetra augu nullam id dolor id nibh ultricies vehicula ut idemin asti elit.</em>
<ul class="social-link">
<li><a href="#"><em class="icon-facebook-sign"></em></a></li>
<li><a href="#"><em class="icon-linkedin-sign"></em></a></li>
</ul>
</div>
</div>
<div class="fourth boxed">
<img src="img/Dorcas.jpg" alt="Mock" />
<div class="inner-box">
<h4>Dorcas Akintunde</h4>
<h5>Product Manager</h5>
<em>Vitae elit libero, ansom phar etra augue. Nullam id dolor id nibh ultri cies cula.</em>
<ul class="social-link">
<li><a href="#"><em class="icon-linkedin-sign"></em></a></li>
<li><a href="#"><em class="icon-twitter-sign"></em></a></li>
</ul>
</div>
</div -->
<div class="two-thirds last boxed">
<div class="inner-box">
<h4>Obaro Agbonoma </h4>
<h5>Founder</h5>
<em>Shar petra augu nullam id dolor id nibh ultricies vehicula ut idemin asti.</em>
<ul class="social-link">
</ul>
</div>
<img src="img/merms-team.jpg" alt="Mock" />
</div>
</div>
<!-- Finish Main Content -->
</div>
</div> <!-- #main -->
</div> <!-- #main-container -->
</div>
@stop
+242
View File
@@ -0,0 +1,242 @@
@extends('layouts.master')
@section('content')
<!-- Start Outter Wrapper -->
<div class="outter-wrapper feature">
<div class="fullwidthbanner-container">
<div class="fullwidthbanner">
<ul>
<!-- SLIDE -->
<li data-transition="fade" data-slotamount="10" data-masterspeed="600" data-thumb="img/slider1.jpg">
<!-- THE MAIN IMAGE IN THE SLIDE -->
<img src="img/slider1.jpg" alt="slide" >
<!-- Caption -->
<div class="caption heading fade"
data-x="175"
data-y="230"
data-speed="300"
data-start="600"
data-easing="easeOutExpo">MERMS-EHR
</div>
<!-- Caption -->
<div class="caption blockquote fade phone-hide"
data-x="175"
data-y="280"
data-speed="300"
data-start="1000"
data-easing="easeOutExpo" style="color:#272709;">
Integrated practice solution for effective <br>
and efficient encounters,<br/>
internal and patient follow up.
</div>
<!-- Caption -->
<div class="caption btn fade"
data-x="175"
data-y="410"
data-speed="300"
data-start="1400"
data-easing="easeOutExpo">
<a href="https://provider.mermsemr.com/register">Sign up</a>
</div>
</li>
<!-- SLIDE -->
<li data-transition="fade" data-slotamount="10" data-masterspeed="600" data-thumb="img/slider2.jpg">
<!-- THE MAIN IMAGE IN THE SLIDE -->
<img src="img/slider2.jpg" alt="slide">
<!-- Caption -->
<div class="caption heading fade"
data-x="175"
data-y="230"
data-speed="300"
data-start="600"
data-easing="easeOutExpo">MERMS-EHR
</div>
<!-- Caption -->
<div class="caption blockquote fade phone-hide"
data-x="175"
data-y="280"
data-speed="300"
data-start="1000"
data-easing="easeOutExpo" style="color:#272709;">
A patient-centric solution that places <br/>
people - the purpose of it all first.
</div>
<!-- Caption -->
<div class="caption btn fade"
data-x="175"
data-y="410"
data-speed="300"
data-start="1400"
data-easing="easeOutExpo">
<a href="https://provider.mermsemr.com/register">Sign up</a>
</div>
</li>
<!-- SLIDE -->
<li data-transition="fade" data-slotamount="10" data-masterspeed="600" data-thumb="img/slider3.jpg">
<!-- THE MAIN IMAGE IN THE SLIDE -->
<img src="img/slider3.jpg" alt="slide">
<!-- Caption -->
<div class="caption heading fade"
data-x="175"
data-y="230"
data-speed="300"
data-start="600"
data-easing="easeOutExpo">MERMS-EHR
</div>
<!-- Caption -->
<div class="caption blockquote fade phone-hide"
data-x="175"
data-y="280"
data-speed="300"
data-start="1000"
data-easing="easeOutExpo" style="color:#272709;">
Blockchain technology to ensure the integrity of records <br/>
as care transition from one provider to another.
</div>
<!-- Caption -->
<div class="caption btn fade"
data-x="175"
data-y="410"
data-speed="300"
data-start="1400"
data-easing="easeOutExpo">
<a href="https://provider.mermsemr.com/register">Sign up</a>
</div>
</li>
</ul>
<!-- Slide Timmer -->
<div class="tp-bannertimer tp-bottom"></div>
</div>
</div>
</div>
<!-- End Outter Wrapper -->
<!-- Start Outter Wrapper / Main Container / wrapper -->
<div class="outter-wrapper"><div class="main-container"><div class="main wrapper clearfix">
<!-- Start Main Content -->
<div class="main-content">
<div class="clearfix">
<!-- Start Column -->
<div class="half">
<h1>MERMS Health Record System</h1>
<p class="lead">Merms was designed by a team of doctors that understand the patient side of the equation. </p>
<p> We worked hard to ensure the integrity of patient record by using blockchain technology with a focus on ease of use.Merms is cloud-based, and there's no software to download and no hardware to install. After sign up, you create a login, provide some necessary information and your EHR is ready to go.</p>
<p><a class="feature-link" href="/product">Learn more...</a></p>
</div>
<!-- Start Column -->
<div class="fourth">
<h1>Features</h1>
<div class="mosaic-block fade">
<div class="mosaic-backdrop">
<img src="/img/feature-home.jpg" alt="Merms Features" /></div>
</div>
<p>Practice management, electronic health records, patient engagement, telemedicine, rooming, and reporting that all work together to smooth practice work flow.
&#8230;<a href="/product" class="more">more</a></p>
</div>
<!-- Did You Know Widget -->
<div class="fourth last">
<h1>Health News</h1>
<ul class="statistics">
<li><em class="icon-flag"></em><a href="https://blog.mermsemr.com/index.php/2019/06/19/use-of-drug-and-your-health/"> Use of Drug and your Health </a> </li>
<li><em class="icon-flag"></em><a href="https://blog.mermsemr.com/index.php/2019/06/19/benefits-of-your-health-tracking/"> Benefits of your Health Tracking </a></li>
<li><em class="icon-flag"></em> <a href="https://blog.mermsemr.com/index.php/2019/06/19/pregnancy-delay-when-to-call-a-reproductive-specialist/"> Pregnancy delay, when to call a reproductive specialist. </a></li>
</ul>
<p>Visit our blog to see more exciting health news and information beneficial to you.
&#8230;<a href="https://blog.mermsemr.com/" class="more">more</a></p>
</div>
</div>
<!-- End Main Content -->
</div>
<!-- End Main Container / End Main Wrapper -->
</div></div> </div>
<!-- Start Outter Wrapper / Main Container / wrapper -->
<div class="outter-wrapper"><div class="main-container"><div class="main wrapper clearfix">
<!-- Start Main Content -->
<div class="main-content">
<!-- Text Seperator -->
<div class="text-seperator">
<h5>Products</h5>
<a class="btn right white-btn xsmall-btn" href="/product">View All</a>
</div>
<!-- Start Projects -->
<div class="clearfix recentwork">
<!-- Start Column -->
<div class="third">
<div class="mosaic-block fade">
<a href="https://provider.mermsemr.com/" class="mosaic-overlay link" title="Insert Your Title"></a><div class="mosaic-backdrop">
<img src="/img/merms-provider.jpg" alt="Mock" /></div>
</div>
<h3><a href="https://provider.mermsemr.com/">Merms-Providers</a></h3>
<p> MermsEMR is an integrated medical software suite for both independent and group practices. &#8230;<a href="/product" class="more">more</a></p>
</div>
<!-- Start Column -->
<div class="third">
<div class="mosaic-block fade">
<a href="https://myfit.mermsemr.com/" class="mosaic-overlay link" title="myFit"></a><div class="mosaic-backdrop">
<img src="/img/myfit_small.jpg" alt="Merms - myFit" /></div>
</div>
<h3><a href="https://myfit.mermsemr.com/">MERMS-myFit</a></h3>
<p>myFit is your personal health care concierge. this app helps you to manage the intricacies of your daily and long term health activities. &#8230;<a href="/product" class="more">more</a></p>
</div>
<!-- Start Column -->
<div class="third last">
<div class="mosaic-block fade">
<a href="https://blog.mermsemr.com/" class="mosaic-overlay link" title="Insert Your Title"></a><div class="mosaic-backdrop">
<div class="corner-date">12 Sep</div><img src="/img/merms-blog.jpg" alt="Mock" /></div>
</div>
<h3><a href="https://blog.mermsemr.com/">HEALTHY LIVING</a></h3>
<p>Visit our health blog to get insights and tips on how to improve your health and enjoy life to the fullest.<a class="more" href="https://blog.mermsemr.com/">more</a></p>
</div>
<!-- End Projects -->
</div>
<!-- End Main Content -->
</div>
<!-- End Main Container / End Main Wrapper -->
</div></div> </div>
@stop