Initial EV files

This commit is contained in:
Olu Amey
2021-08-05 18:27:41 -04:00
commit 326a5bfdad
591 changed files with 114945 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
<?php
use CodeIgniter\CLI\CLI;
CLI::error('ERROR: ' . $code);
CLI::write($message);
CLI::newLine();
+72
View File
@@ -0,0 +1,72 @@
<?php
use CodeIgniter\CLI\CLI;
// The main Exception
CLI::newLine();
CLI::write('[' . get_class($exception) . ']', 'light_gray', 'red');
CLI::newLine();
CLI::write($message);
CLI::newLine();
CLI::write('at ' . CLI::color(clean_path($exception->getFile()) . ':' . $exception->getLine(), 'green'));
CLI::newLine();
// The backtrace
if (defined('SHOW_DEBUG_BACKTRACE') && SHOW_DEBUG_BACKTRACE)
{
$backtraces = $exception->getTrace();
if ($backtraces)
{
CLI::write('Backtrace:', 'green');
}
foreach ($backtraces as $i => $error)
{
$padFile = ' '; // 4 spaces
$padClass = ' '; // 7 spaces
$c = str_pad($i + 1, 3, ' ', STR_PAD_LEFT);
if (isset($error['file']))
{
$filepath = clean_path($error['file']) . ':' . $error['line'];
CLI::write($c . $padFile . CLI::color($filepath, 'yellow'));
}
else
{
CLI::write($c . $padFile . CLI::color('[internal function]', 'yellow'));
}
$function = '';
if (isset($error['class']))
{
$type = ($error['type'] === '->') ? '()' . $error['type'] : $error['type'];
$function .= $padClass . $error['class'] . $type . $error['function'];
}
elseif (! isset($error['class']) && isset($error['function']))
{
$function .= $padClass . $error['function'];
}
$args = implode(', ', array_map(function ($value) {
switch (true)
{
case is_object($value):
return 'Object(' . get_class($value) . ')';
case is_array($value):
return count($value) ? '[...]' : '[]';
case is_null($value):
return 'null'; // return the lowercased version
default:
return var_export($value, true);
}
}, array_values($error['args'] ?? [])));
$function .= '(' . $args . ')';
CLI::write($function);
CLI::newLine();
}
}
+5
View File
@@ -0,0 +1,5 @@
<?php
// On the CLI, we still want errors in productions
// so just use the exception template.
include __DIR__ . '/error_exception.php';
+197
View File
@@ -0,0 +1,197 @@
:root {
--main-bg-color: #fff;
--main-text-color: #555;
--dark-text-color: #222;
--light-text-color: #c7c7c7;
--brand-primary-color: #E06E3F;
--light-bg-color: #ededee;
--dark-bg-color: #404040;
}
body {
height: 100%;
background: var(--main-bg-color);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
color: var(--main-text-color);
font-weight: 300;
margin: 0;
padding: 0;
}
h1 {
font-weight: lighter;
letter-spacing: 0.8;
font-size: 3rem;
color: var(--dark-text-color);
margin: 0;
}
h1.headline {
margin-top: 20%;
font-size: 5rem;
}
.text-center {
text-align: center;
}
p.lead {
font-size: 1.6rem;
}
.container {
max-width: 75rem;
margin: 0 auto;
padding: 1rem;
}
.header {
background: var(--light-bg-color);
color: var(--dark-text-color);
}
.header .container {
padding: 1rem 1.75rem 1.75rem 1.75rem;
}
.header h1 {
font-size: 2.5rem;
font-weight: 500;
}
.header p {
font-size: 1.2rem;
margin: 0;
line-height: 2.5;
}
.header a {
color: var(--brand-primary-color);
margin-left: 2rem;
display: none;
text-decoration: none;
}
.header:hover a {
display: inline;
}
.footer {
background: var(--dark-bg-color);
color: var(--light-text-color);
}
.footer .container {
border-top: 1px solid #e7e7e7;
margin-top: 1rem;
text-align: center;
}
.source {
background: #343434;
color: var(--light-text-color);
padding: 0.5em 1em;
border-radius: 5px;
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
font-size: 0.85rem;
margin: 0;
overflow-x: scroll;
}
.source span.line {
line-height: 1.4;
}
.source span.line .number {
color: #666;
}
.source .line .highlight {
display: block;
background: var(--dark-text-color);
color: var(--light-text-color);
}
.source span.highlight .number {
color: #fff;
}
.tabs {
list-style: none;
list-style-position: inside;
margin: 0;
padding: 0;
margin-bottom: -1px;
}
.tabs li {
display: inline;
}
.tabs a:link,
.tabs a:visited {
padding: 0rem 1rem;
line-height: 2.7;
text-decoration: none;
color: var(--dark-text-color);
background: var(--light-bg-color);
border: 1px solid rgba(0,0,0,0.15);
border-bottom: 0;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
display: inline-block;
}
.tabs a:hover {
background: var(--light-bg-color);
border-color: rgba(0,0,0,0.15);
}
.tabs a.active {
background: var(--main-bg-color);
color: var(--main-text-color);
}
.tab-content {
background: var(--main-bg-color);
border: 1px solid rgba(0,0,0,0.15);
}
.content {
padding: 1rem;
}
.hide {
display: none;
}
.alert {
margin-top: 2rem;
display: block;
text-align: center;
line-height: 3.0;
background: #d9edf7;
border: 1px solid #bcdff1;
border-radius: 5px;
color: #31708f;
}
ul, ol {
line-height: 1.8;
}
table {
width: 100%;
overflow: hidden;
}
th {
text-align: left;
border-bottom: 1px solid #e7e7e7;
padding-bottom: 0.5rem;
}
td {
padding: 0.2rem 0.5rem 0.2rem 0;
}
tr:hover td {
background: #f1f1f1;
}
td pre {
white-space: pre-wrap;
}
.trace a {
color: inherit;
}
.trace table {
width: auto;
}
.trace tr td:first-child {
min-width: 5em;
font-weight: bold;
}
.trace td {
background: var(--light-bg-color);
padding: 0 1rem;
}
.trace td pre {
margin: 0;
}
.args {
display: none;
}
+128
View File
@@ -0,0 +1,128 @@
//--------------------------------------------------------------------
// Tabs
//--------------------------------------------------------------------
var tabLinks = new Array();
var contentDivs = new Array();
function init()
{
// Grab the tab links and content divs from the page
var tabListItems = document.getElementById('tabs').childNodes;
console.log(tabListItems);
for (var i = 0; i < tabListItems.length; i ++)
{
if (tabListItems[i].nodeName == "LI")
{
var tabLink = getFirstChildWithTagName(tabListItems[i], 'A');
var id = getHash(tabLink.getAttribute('href'));
tabLinks[id] = tabLink;
contentDivs[id] = document.getElementById(id);
}
}
// Assign onclick events to the tab links, and
// highlight the first tab
var i = 0;
for (var id in tabLinks)
{
tabLinks[id].onclick = showTab;
tabLinks[id].onfocus = function () {
this.blur()
};
if (i == 0)
{
tabLinks[id].className = 'active';
}
i ++;
}
// Hide all content divs except the first
var i = 0;
for (var id in contentDivs)
{
if (i != 0)
{
console.log(contentDivs[id]);
contentDivs[id].className = 'content hide';
}
i ++;
}
}
//--------------------------------------------------------------------
function showTab()
{
var selectedId = getHash(this.getAttribute('href'));
// Highlight the selected tab, and dim all others.
// Also show the selected content div, and hide all others.
for (var id in contentDivs)
{
if (id == selectedId)
{
tabLinks[id].className = 'active';
contentDivs[id].className = 'content';
}
else
{
tabLinks[id].className = '';
contentDivs[id].className = 'content hide';
}
}
// Stop the browser following the link
return false;
}
//--------------------------------------------------------------------
function getFirstChildWithTagName(element, tagName)
{
for (var i = 0; i < element.childNodes.length; i ++)
{
if (element.childNodes[i].nodeName == tagName)
{
return element.childNodes[i];
}
}
}
//--------------------------------------------------------------------
function getHash(url)
{
var hashPos = url.lastIndexOf('#');
return url.substring(hashPos + 1);
}
//--------------------------------------------------------------------
function toggle(elem)
{
elem = document.getElementById(elem);
if (elem.style && elem.style['display'])
{
// Only works with the "style" attr
var disp = elem.style['display'];
}
else if (elem.currentStyle)
{
// For MSIE, naturally
var disp = elem.currentStyle['display'];
}
else if (window.getComputedStyle)
{
// For most other browsers
var disp = document.defaultView.getComputedStyle(elem, null).getPropertyValue('display');
}
// Toggle the state of the "display" style
elem.style.display = disp == 'block' ? 'none' : 'block';
return false;
}
+84
View File
@@ -0,0 +1,84 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>404 Page Not Found</title>
<style>
div.logo {
height: 200px;
width: 155px;
display: inline-block;
opacity: 0.08;
position: absolute;
top: 2rem;
left: 50%;
margin-left: -73px;
}
body {
height: 100%;
background: #fafafa;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #777;
font-weight: 300;
}
h1 {
font-weight: lighter;
letter-spacing: 0.8;
font-size: 3rem;
margin-top: 0;
margin-bottom: 0;
color: #222;
}
.wrap {
max-width: 1024px;
margin: 5rem auto;
padding: 2rem;
background: #fff;
text-align: center;
border: 1px solid #efefef;
border-radius: 0.5rem;
position: relative;
}
pre {
white-space: normal;
margin-top: 1.5rem;
}
code {
background: #fafafa;
border: 1px solid #efefef;
padding: 0.5rem 1rem;
border-radius: 5px;
display: block;
}
p {
margin-top: 1.5rem;
}
.footer {
margin-top: 2rem;
border-top: 1px solid #efefef;
padding: 1em 2em 0 2em;
font-size: 85%;
color: #999;
}
a:active,
a:link,
a:visited {
color: #dd4814;
}
</style>
</head>
<body>
<div class="wrap">
<h1>404 - File Not Found</h1>
<p>
<?php if (! empty($message) && $message !== '(null)') : ?>
<?= nl2br(esc($message)) ?>
<?php else : ?>
Sorry! Cannot seem to find the page you were looking for.
<?php endif ?>
</p>
</div>
</body>
</html>
+400
View File
@@ -0,0 +1,400 @@
<?php $error_id = uniqid('error', true); ?>
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="robots" content="noindex">
<title><?= esc($title) ?></title>
<style type="text/css">
<?= preg_replace('#[\r\n\t ]+#', ' ', file_get_contents(__DIR__ . DIRECTORY_SEPARATOR . 'debug.css')) ?>
</style>
<script type="text/javascript">
<?= file_get_contents(__DIR__ . DIRECTORY_SEPARATOR . 'debug.js') ?>
</script>
</head>
<body onload="init()">
<!-- Header -->
<div class="header">
<div class="container">
<h1><?= esc($title), esc($exception->getCode() ? ' #' . $exception->getCode() : '') ?></h1>
<p>
<?= nl2br(esc($exception->getMessage())) ?>
<a href="https://www.duckduckgo.com/?q=<?= urlencode($title . ' ' . preg_replace('#\'.*\'|".*"#Us', '', $exception->getMessage())) ?>"
rel="noreferrer" target="_blank">search &rarr;</a>
</p>
</div>
</div>
<!-- Source -->
<div class="container">
<p><b><?= esc(static::cleanPath($file, $line)) ?></b> at line <b><?= esc($line) ?></b></p>
<?php if (is_file($file)) : ?>
<div class="source">
<?= static::highlightFile($file, $line, 15); ?>
</div>
<?php endif; ?>
</div>
<div class="container">
<ul class="tabs" id="tabs">
<li><a href="#backtrace">Backtrace</a></li>
<li><a href="#server">Server</a></li>
<li><a href="#request">Request</a></li>
<li><a href="#response">Response</a></li>
<li><a href="#files">Files</a></li>
<li><a href="#memory">Memory</a></li>
</ul>
<div class="tab-content">
<!-- Backtrace -->
<div class="content" id="backtrace">
<ol class="trace">
<?php foreach ($trace as $index => $row) : ?>
<li>
<p>
<!-- Trace info -->
<?php if (isset($row['file']) && is_file($row['file'])) :?>
<?php
if (isset($row['function']) && in_array($row['function'], ['include', 'include_once', 'require', 'require_once'], true))
{
echo esc($row['function'] . ' ' . static::cleanPath($row['file']));
}
else
{
echo esc(static::cleanPath($row['file']) . ' : ' . $row['line']);
}
?>
<?php else : ?>
{PHP internal code}
<?php endif; ?>
<!-- Class/Method -->
<?php if (isset($row['class'])) : ?>
&nbsp;&nbsp;&mdash;&nbsp;&nbsp;<?= esc($row['class'] . $row['type'] . $row['function']) ?>
<?php if (! empty($row['args'])) : ?>
<?php $args_id = $error_id . 'args' . $index ?>
( <a href="#" onclick="return toggle('<?= esc($args_id, 'attr') ?>');">arguments</a> )
<div class="args" id="<?= esc($args_id, 'attr') ?>">
<table cellspacing="0">
<?php
$params = null;
// Reflection by name is not available for closure function
if (substr($row['function'], -1) !== '}')
{
$mirror = isset($row['class']) ? new \ReflectionMethod($row['class'], $row['function']) : new \ReflectionFunction($row['function']);
$params = $mirror->getParameters();
}
foreach ($row['args'] as $key => $value) : ?>
<tr>
<td><code><?= esc(isset($params[$key]) ? '$' . $params[$key]->name : "#$key") ?></code></td>
<td><pre><?= esc(print_r($value, true)) ?></pre></td>
</tr>
<?php endforeach ?>
</table>
</div>
<?php else : ?>
()
<?php endif; ?>
<?php endif; ?>
<?php if (! isset($row['class']) && isset($row['function'])) : ?>
&nbsp;&nbsp;&mdash;&nbsp;&nbsp; <?= esc($row['function']) ?>()
<?php endif; ?>
</p>
<!-- Source? -->
<?php if (isset($row['file']) && is_file($row['file']) && isset($row['class'])) : ?>
<div class="source">
<?= static::highlightFile($row['file'], $row['line']) ?>
</div>
<?php endif; ?>
</li>
<?php endforeach; ?>
</ol>
</div>
<!-- Server -->
<div class="content" id="server">
<?php foreach (['_SERVER', '_SESSION'] as $var) : ?>
<?php if (empty($GLOBALS[$var]) || ! is_array($GLOBALS[$var]))
{
continue;
} ?>
<h3>$<?= esc($var) ?></h3>
<table>
<thead>
<tr>
<th>Key</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<?php foreach ($GLOBALS[$var] as $key => $value) : ?>
<tr>
<td><?= esc($key) ?></td>
<td>
<?php if (is_string($value)) : ?>
<?= esc($value) ?>
<?php else: ?>
<pre><?= esc(print_r($value, true)) ?></pre>
<?php endif; ?>
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<?php endforeach ?>
<!-- Constants -->
<?php $constants = get_defined_constants(true); ?>
<?php if (! empty($constants['user'])) : ?>
<h3>Constants</h3>
<table>
<thead>
<tr>
<th>Key</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<?php foreach ($constants['user'] as $key => $value) : ?>
<tr>
<td><?= esc($key) ?></td>
<td>
<?php if (is_string($value)) : ?>
<?= esc($value) ?>
<?php else: ?>
<pre><?= esc(print_r($value, true)) ?></pre>
<?php endif; ?>
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<?php endif; ?>
</div>
<!-- Request -->
<div class="content" id="request">
<?php $request = \Config\Services::request(); ?>
<table>
<tbody>
<tr>
<td style="width: 10em">Path</td>
<td><?= esc($request->uri) ?></td>
</tr>
<tr>
<td>HTTP Method</td>
<td><?= esc($request->getMethod(true)) ?></td>
</tr>
<tr>
<td>IP Address</td>
<td><?= esc($request->getIPAddress()) ?></td>
</tr>
<tr>
<td style="width: 10em">Is AJAX Request?</td>
<td><?= $request->isAJAX() ? 'yes' : 'no' ?></td>
</tr>
<tr>
<td>Is CLI Request?</td>
<td><?= $request->isCLI() ? 'yes' : 'no' ?></td>
</tr>
<tr>
<td>Is Secure Request?</td>
<td><?= $request->isSecure() ? 'yes' : 'no' ?></td>
</tr>
<tr>
<td>User Agent</td>
<td><?= esc($request->getUserAgent()->getAgentString()) ?></td>
</tr>
</tbody>
</table>
<?php $empty = true; ?>
<?php foreach (['_GET', '_POST', '_COOKIE'] as $var) : ?>
<?php if (empty($GLOBALS[$var]) || ! is_array($GLOBALS[$var]))
{
continue;
} ?>
<?php $empty = false; ?>
<h3>$<?= esc($var) ?></h3>
<table style="width: 100%">
<thead>
<tr>
<th>Key</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<?php foreach ($GLOBALS[$var] as $key => $value) : ?>
<tr>
<td><?= esc($key) ?></td>
<td>
<?php if (is_string($value)) : ?>
<?= esc($value) ?>
<?php else: ?>
<pre><?= esc(print_r($value, true)) ?></pre>
<?php endif; ?>
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<?php endforeach ?>
<?php if ($empty) : ?>
<div class="alert">
No $_GET, $_POST, or $_COOKIE Information to show.
</div>
<?php endif; ?>
<?php $headers = $request->getHeaders(); ?>
<?php if (! empty($headers)) : ?>
<h3>Headers</h3>
<table>
<thead>
<tr>
<th>Header</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<?php foreach ($headers as $value) : ?>
<?php if (empty($value))
{
continue;
} ?>
<?php if (! is_array($value))
{
$value = [$value];
} ?>
<?php foreach ($value as $h) : ?>
<tr>
<td><?= esc($h->getName(), 'html') ?></td>
<td><?= esc($h->getValueLine(), 'html') ?></td>
</tr>
<?php endforeach; ?>
<?php endforeach; ?>
</tbody>
</table>
<?php endif; ?>
</div>
<!-- Response -->
<?php
$response = \Config\Services::response();
$response->setStatusCode(http_response_code());
?>
<div class="content" id="response">
<table>
<tr>
<td style="width: 15em">Response Status</td>
<td><?= esc($response->getStatusCode() . ' - ' . $response->getReason()) ?></td>
</tr>
</table>
<?php $headers = $response->getHeaders(); ?>
<?php if (! empty($headers)) : ?>
<?php natsort($headers) ?>
<h3>Headers</h3>
<table>
<thead>
<tr>
<th>Header</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<?php foreach ($headers as $name => $value) : ?>
<tr>
<td><?= esc($name, 'html') ?></td>
<td><?= esc($response->getHeaderLine($name), 'html') ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<?php endif; ?>
</div>
<!-- Files -->
<div class="content" id="files">
<?php $files = get_included_files(); ?>
<ol>
<?php foreach ($files as $file) :?>
<li><?= esc(static::cleanPath($file)) ?></li>
<?php endforeach ?>
</ol>
</div>
<!-- Memory -->
<div class="content" id="memory">
<table>
<tbody>
<tr>
<td>Memory Usage</td>
<td><?= esc(static::describeMemory(memory_get_usage(true))) ?></td>
</tr>
<tr>
<td style="width: 12em">Peak Memory Usage:</td>
<td><?= esc(static::describeMemory(memory_get_peak_usage(true))) ?></td>
</tr>
<tr>
<td>Memory Limit:</td>
<td><?= esc(ini_get('memory_limit')) ?></td>
</tr>
</tbody>
</table>
</div>
</div> <!-- /tab-content -->
</div> <!-- /container -->
<div class="footer">
<div class="container">
<p>
Displayed at <?= esc(date('H:i:sa')) ?> &mdash;
PHP: <?= esc(phpversion()) ?> &mdash;
CodeIgniter: <?= esc(\CodeIgniter\CodeIgniter::CI_VERSION) ?>
</p>
</div>
</div>
</body>
</html>
+25
View File
@@ -0,0 +1,25 @@
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="robots" content="noindex">
<title>Whoops!</title>
<style type="text/css">
<?= preg_replace('#[\r\n\t ]+#', ' ', file_get_contents(__DIR__ . DIRECTORY_SEPARATOR . 'debug.css')) ?>
</style>
</head>
<body>
<div class="container text-center">
<h1 class="headline">Whoops!</h1>
<p class="lead">We seem to have hit a snag. Please try again later...</p>
</div>
</body>
</html>
+420
View File
@@ -0,0 +1,420 @@
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta Tags -->
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport">
<!-- Author -->
<meta name="author" content="Themes Industry">
<!-- Description -->
<meta name="description" content="MegaOne is a highly creative, modern, visually stunning and Bootstrap responsive multipurpose studio and portfolio HTML5 template with ready home page demos.">
<!-- Page Title -->
<title>New Agency | MegaOne HTML5 Template</title>
<!-- Favicon -->
<link href="/float-ev/vendor/img/favicon.ico" rel="icon">
<!-- Bundle -->
<link rel="stylesheet" href="/float-ev/vendor/css/bundle.min.css">
<!-- Revolution Slider CSS Files -->
<link rel="stylesheet" href="/float-ev/vendor/css/revolution-settings.min.css">
<!-- Plugin Css -->
<link href="/float-ev/vendor/css/LineIcons.min.css" rel="stylesheet">
<link href="/float-ev/vendor/css/jquery.fancybox.min.css" rel="stylesheet">
<link href="/float-ev/vendor/css/owl.carousel.min.css" rel="stylesheet">
<link href="/float-ev/vendor/css/wow.css" rel="stylesheet">
<link rel="stylesheet" href="/float-ev/vendor/css/cubeportfolio.min.css">
<link href="/float-ev/css/line-awesome.min.css" rel="stylesheet">
<!-- Style Sheet -->
<link href="/float-ev/css/style.css" rel="stylesheet">
<link href="/float-ev/css/custom.css" rel="stylesheet">
</head>
<body data-spy="scroll" data-target=".navbar" data-offset="90">
<!-- Start Loader -->
<div class="loader" id="loader-fade">
<div class="dot-container">
<div class="dot dot-1"></div>
<div class="dot dot-2"></div>
<div class="dot dot-3"></div>
</div>
<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
<defs>
<filter id="goo">
<feGaussianBlur in="SourceGraphic" stdDeviation="10" result="blur" />
<feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 21 -7"/>
</filter>
</defs>
</svg>
</div>
<!-- End Loader -->
<!-- Start Header -->
<header>
<!--Navigation-->
<nav class="navbar navbar-top-default navbar-expand-lg navbar-simple nav-line">
<ul class="mb-0 top-info">
<li class="c-links d-none d-lg-block"><a href="#">+1 631 123 4567 </a></li>
</ul>
<div class="container">
<a href="index-new-agency.html" title="Logo" class="logo">
<!--Logo Default-->
<img src="/float-ev/images/float-travel-app-logo.svg" alt="logo" class="logo-dark">
</a>
<!--Nav Links-->
<div class="collapse navbar-collapse" id="megaone">
<div class="navbar-nav ml-auto">
<a class="nav-link active scroll" href="#home-banner">Home</a>
<a class="nav-link scroll" href="#services-sec">About</a>
<a class="nav-link scroll" href="#portfolio-area">Work</a>
<a class="nav-link scroll" href="#reviews">Reviews</a>
<a class="nav-link scroll" href="#contact">Contact Us</a>
</div>
</div>
<!--Side Menu Button-->
<a href="javascript:void(0)" class="sidemenu_btn" id="sidemenu_toggle">
<span></span>
<span></span>
<span></span>
</a>
</div>
<!--Social Icons-->
<div class="nav-social text-white d-flex justify-content-center">
<ul class="social-icons-simple">
<li><a class="facebook-text-hvr" href="javascript:void(0)"><i class="fab fa-facebook-f"></i> </a> </li>
<li><a class="twitter-text-hvr" href="javascript:void(0)"><i class="fab fa-twitter"></i> </a> </li>
<li><a class="linkedin-text-hvr" href="javascript:void(0)"><i class="fab fa-linkedin-in"></i> </a> </li>
<li><a class="instagram-text-hvr" href="javascript:void(0)"><i class="fab fa-instagram"></i> </a> </li>
</ul>
</div>
</nav>
<!--Side Nav-->
<div class="side-menu hidden">
<div class="inner-wrapper">
<span class="btn-close" id="btn_sideNavClose"><i></i><i></i></span>
<nav class="side-nav w-100">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link scroll" href="#home-banner">Home</a>
</li>
<li class="nav-item">
<a class="nav-link scroll" href="#services-sec">About</a>
</li>
<li class="nav-item">
<a class="nav-link scroll" href="#portfolio-area">Work</a>
</li>
<li class="nav-item">
<a class="nav-link scroll" href="#reviews">Reviews</a>
</li>
<li class="nav-item">
<a class="nav-link scroll" href="#contact">Contact Us</a>
</li>
</ul>
</nav>
<div class="side-footer text-white w-100">
<ul class="social-icons-simple">
<li><a class="facebook-text-hvr" href="javascript:void(0)"><i class="fab fa-facebook-f"></i></a></li>
<li><a class="twitter-text-hvr" href="javascript:void(0)"><i class="fab fa-twitter"></i></a></li>
<li><a class="linkedin-text-hvr" href="javascript:void(0)"><i class="fab fa-linkedin-in"></i></a></li>
<li><a class="instagram-text-hvr" href="javascript:void(0)"><i class="fab fa-instagram"></i></a></li>
</ul>
<p class="text-white">&copy; 2020 MegaOne. Made With Love by <span class="d-inline d-lg-block"> ThemesIndustry</span></p>
</div>
</div>
</div>
<a id="close_side_menu" href="javascript:void(0);"></a>
<!-- End side menu -->
</header>
<!-- End Header -->
<!-- Start Banner -->
<section class="banner-area" id="home-banner">
<div class="container">
<div class="row center-content">
<div class="col-12 col-md-10 col-lg-6 offset-md-1 offset-lg-6">
<div class="green-box">
<div class="box-content">
<h1 class="wow fadeInUp" data-wow-delay="1.2s">New Design Agency</h1>
<h1 class="wow fadeInUp" data-wow-delay="1.6s">In Berlin</h1><br>
<a href="#services-sec" class="scroll button wow fadeInUp" data-wow-delay="2s"><i class="las la-angle-right"></i>Learn More</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Banner -->
<!-- Start Services -->
<section class="services-sec" id="services-sec">
<div class="container">
<div class="row">
<div class="col-12 col-lg-5">
<div class="heading-area">
<h4 class="heading wow slideInLeft">Creativity <span> In Our Designs</span></h4>
</div>
</div>
<div class="col-12 col-lg-7">
<div class="image-holder wow slideInRight">
<img src="/float-ev/images/service-img.jpg" alt="service-img">
</div>
</div>
<div class="col-12 padding-top-half">
<ul class="services-boxes">
<!-- Service-1 -->
<li class="service-card left wow slideInLeft">
<div class="icon-holder"><i class="lni lni-bulb"></i></div>
<p class="text">Lorem ipsum is simply dummy text of the printing and typesetting. Lorem Ipsum has been the industrys standard dummy.</p>
</li>
<!-- Service-2 -->
<li class="service-card right d-block text-center wow slideInRight">
<div class="icon-holder"><i class="lni lni-briefcase"></i></div>
<p class="text">Lorem ipsum is simply dummy text of the printing and typesetting. Lorem Ipsum has been the industrys standard dummy.</p>
</li>
<!-- Service-3 -->
<li class="service-card left icon-right text-center text-lg-right wow slideInLeft">
<p class="text order-2 order-lg-1">Lorem ipsum is simply dummy text of the printing and typesetting. Lorem Ipsum has been the industrys standard dummy.</p>
<div class="icon-holder order-1 order-lg-2"><i class="lni lni-heart"></i></div>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- End Services -->
<!-- Start Portfolio -->
<section class="portfolio" id="portfolio-area">
<div id="project-sec" class="project-sec">
<div class="projects owl-carousel owl-theme no-gutters">
<!-- Item-1 -->
<div class="item project-area">
<div class="project-img order-1">
<img src="/float-ev/images/p1.jpg" alt="images">
</div>
<div class="container">
<div class="project-detail text-center text-lg-left order-2">
<div class="row no-gutters">
<div class="col-12 offset-md-12 col-lg-6 animate-fade">
<div class="black-box">
<h6 class="project-heading">Cocooil Branding Project </h6>
<p class="project-text">Donec quis nunc mollis, tincidunt mi vel. Donec quis nunc mollis, tincidunt mi vel.</p>
<a href="/float-ev/standalone.html" class="btn btn-medium btn-rounded btn-white">Launch Project</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Item-2 -->
<div class="item project-area">
<div class="project-img order-1">
<img src="/float-ev/images/p2.jpg" alt="images">
</div>
<div class="container">
<div class="project-detail text-center text-lg-left order-2">
<div class="row no-gutters">
<div class="col-12 offset-md-12 col-lg-6 animate-fade">
<div class="black-box">
<h6 class="project-heading">Cocooil Branding Project </h6>
<p class="project-text">Donec quis nunc mollis, tincidunt mi vel. Donec quis nunc mollis, tincidunt mi vel.</p>
<a href="/float-ev/standalone.html" class="btn btn-medium btn-rounded btn-white">Launch Project</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Item-3 -->
<div class="item project-area">
<div class="project-img order-1">
<img src="/float-ev/images/p3.jpg" alt="images">
</div>
<div class="container">
<div class="project-detail text-center text-lg-left order-2">
<div class="row no-gutters">
<div class="col-12 offset-md-12 col-lg-6 animate-fade">
<div class="black-box">
<h6 class="project-heading">Cocooil Branding Project </h6>
<p class="project-text">Donec quis nunc mollis, tincidunt mi vel. Donec quis nunc mollis, tincidunt mi vel.</p>
<a href="/float-ev/standalone.html" class="btn btn-medium btn-rounded btn-white">Launch Project</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Nav Arrows -->
<div class="project-links-left d-none d-md-block">
<a class="customPrevBtn"><i class="las la-angle-left"></i></a>
</div>
<div class="project-links-right d-none d-md-block">
<a class="customNextBtn"><i class="las la-angle-right"></i></a>
</div>
</div>
</section>
<!-- End Portfolio -->
<!-- Start Reviews -->
<section class="reviews-sec" id="reviews">
<div class="container">
<div class="row">
<div class="col-12 col-lg-3">
<div class="heading-area">
<h4 class="heading wow slideInLeft">Happy <span> Customers</span></h4>
</div>
</div>
<div class="col-12 col-lg-9">
<div class="image-holder wow slideInRight">
<img src="/float-ev/images/reviews.jpg" alt="service-img">
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12">
<div class="reviews-carousel owl-carousel owl-theme">
<!-- Item-1 -->
<div class="item">
<div class="row no-gutters">
<div class="col-lg-3 col-md-12 col-sm-12 name wow fadeInLeft" data-wow-delay="400ms">
<div class="client-img-holder rounded-circle center-block">
<img src="/float-ev/images/review-img-1.png" alt="client1">
</div>
<h5>Alex David Williams</h5>
<p>Berlin Town</p>
</div>
<div class="col-lg-9 col-md-12 col-sm-12 wow fadeInLeft" data-wow-delay="400ms">
<div class="icon-holder"><i class="fas fa-quote-left"></i></div>
<p class="text">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce vitae egestas mi, vel dapibus diam. Mauris malesuada, nisl non rutrum commodo, sem magna laoreet tellus, eu euismod dolor enim et mi. In at tempor purus. </p>
</div>
</div>
</div>
<!-- Item-2 -->
<div class="item">
<div class="row no-gutters">
<div class="col-lg-3 col-md-12 col-sm-12 name">
<div class="client-img-holder rounded-circle center-block">
<img src="/float-ev/images/review-img-2.png" alt="client2">
</div>
<h5>Sara David Williams</h5>
<p>Berlin Town</p>
</div>
<div class="col-lg-9 col-md-12 col-sm-12">
<div class="icon-holder"><i class="fas fa-quote-left"></i></div>
<p class="text">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce vitae egestas mi, vel dapibus diam. Mauris malesuada, nisl non rutrum commodo, sem magna laoreet tellus, eu euismod dolor enim et mi. In at tempor purus. </p>
</div>
</div>
</div>
<!-- Item-3 -->
<div class="item">
<div class="row no-gutters">
<div class="col-lg-3 col-md-12 col-sm-12 name">
<div class="client-img-holder rounded-circle center-block">
<img src="/float-ev/images/review-img-3.png" alt="client3">
</div>
<h5>Steve David Williams</h5>
<p>Berlin Town</p>
</div>
<div class="col-lg-9 col-md-12 col-sm-12">
<div class="icon-holder"><i class="fas fa-quote-left"></i></div>
<p class="text">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce vitae egestas mi, vel dapibus diam. Mauris malesuada, nisl non rutrum commodo, sem magna laoreet tellus, eu euismod dolor enim et mi. In at tempor purus. </p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Reviews -->
<!-- Start Counter -->
<section class="counters bg-black" id="counter">
<div class="container">
<div class="row align-items-center">
<div class="col-12 col-md-12 col-lg-6 wow slideInLeft" data-wow-delay=".5s" >
<div class="green-box">
<div class="box-content">
<h4>Interesting Facts & Figures</h4>
<h1>New Agency Stats</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce vitae egestas mi, vel dapibus diam mauris malesuada.</p>
</div>
</div>
</div>
<div class="col-12 col-md-12 col-lg-6 text-center wow slideInRight" data-wow-delay=".5s">
<!-- Counter no.1 -->
<div class="counter">
<h5 class="count">125</h5>
<p>Happy Customers</p>
</div>
<!-- Counter no.2 -->
<div class="counter">
<h5 class="count">865</h5>
<p>Lines of Codes</p>
</div>
<!-- Counter no.3 -->
<div class="counter">
<h5 class="count">510</h5>
<p>Project Completed</p>
</div>
</div>
</div>
</div>
</section>
<!-- End Counter -->
<!-- Start Contact -->
<section class="contact-sec" id="contact">
<div class="container expand-container">
<div class="row align-items-center">
<div class="col-12 col-md-12 col-lg-5 wow slideInLeft" data-wow-delay=".5s">
<div class="heading-area">
<h4 class="heading">Questions? <span class="d-block"> Get in Touch</span></h4>
</div>
<div class="contact-details">
<ul>
<li><i aria-hidden="true" class="las la-paper-plane"></i>email@website.com</li>
<li><i aria-hidden="true" class="las la-phone"></i><span>+1 631 1234 5678</span></li>
<li><i aria-hidden="true" class="las la-map-marker"></i> 123 Park Avenue, New York</li>
</ul>
</div>
</div>
<div class="col-12 col-md-12 col-lg-7 wow slideInRight" data-wow-delay=".5s">
<form class="row contact-form row-padding" id="contact-form-data">
<div class="col-12 col-lg-10" id="result"></div>
<div class="col-12 col-lg-10">
<input type="text" name="userName" placeholder="Name" class="form-control">
<input type="text" name="userPhone" placeholder="Contact No" class="form-control">
<input type="email" name="userEmail" placeholder="Email" class="form-control">
<textarea class="form-control" name="userMessage" rows="6" placeholder="Type Your Message Here"></textarea>
<a href="javascript:void(0);" class="btn btn-medium btn-rounded btn-trans rounded-pill w-100 contact_btn main-font">Submit Information</a>
</div>
</form>
</div>
</div>
</div>
</section>
<!-- End Contact -->
<!-- Start Scroll Top -->
<div class="go-top"><i class="fas fa-angle-up"></i><i class="fas fa-angle-up"></i></div>
<!-- End Scroll Top -->
<!-- JavaScript -->
<script src="/float-ev/vendor/js/bundle.min.js"></script>
<!-- Plugin Js -->
<script src="/float-ev/vendor/js/morphext.min.js"></script>
<script src="/float-ev/vendor/js/jquery.appear.js"></script>
<script src="/float-ev/vendor/js/jquery.fancybox.min.js"></script>
<script src="/float-ev/vendor/js/owl.carousel.min.js"></script>
<script src="/float-ev/vendor/js/wow.min.js"></script>
<script src="/float-ev/vendor/js/jquery.cubeportfolio.min.js"></script>
<!-- CUSTOM JS -->
<script src="/float-ev/vendor/js/contact_us.js"></script>
<script src="/float-ev/js/script.js"></script>
</body>
</html>