First complete upload on nas
This commit is contained in:
@@ -0,0 +1,113 @@
|
||||
<footer>
|
||||
<div class="footer-rect">
|
||||
<img src="images/lines/rectangle-3.png" data-at2x="images/lines/rectangle-3@2x.png" alt>
|
||||
</div>
|
||||
|
||||
<!-- footer top -->
|
||||
<div class="footer-section">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
|
||||
<!-- footer about -->
|
||||
|
||||
<div class="col-md-4 col-xs-12 mb-lg-30">
|
||||
<div class="footer-about align-center">
|
||||
<h3 class="footer-title font-alt">About Relish</h3>
|
||||
<div class="img-line">
|
||||
<img src="images/lines/img-line-40.png" data-at2x="images/lines/img-line-40@2x.png" alt>
|
||||
</div>
|
||||
<p class="align-left mb-40">Lorem ipsum dolor sit amet, consectetuer adipiscing no. Aenean comodo ligula eget dolor. Senean masas, cum sociis natoque nean comodo.</p>
|
||||
<h3 class="footer-title-small font-alt">NEWSLETTER SIGNUP</h3>
|
||||
<form class="form">
|
||||
<input type="email" class="input-sm mb-20" value="" placeholder="Your Email">
|
||||
<button class="button small button-newsletter" name="submit" type="submit">OK</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- / footer about -->
|
||||
|
||||
<!-- footer tweets -->
|
||||
|
||||
<div class="col-md-4 col-xs-12 mb-lg-30">
|
||||
<div class="footer-tweets align-center">
|
||||
<h3 class="footer-title font-alt">Latest Tweets</h3>
|
||||
<div class="img-line">
|
||||
<img src="images/lines/img-line-40.png" data-at2x="images/lines/img-line-40@2x.png" alt>
|
||||
</div>
|
||||
<div class="twitter-footer align-left"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- / footer tweets -->
|
||||
|
||||
<!-- footer contacts -->
|
||||
|
||||
<div class="col-md-4 col-xs-12 mb-lg-30">
|
||||
<div class="footer-contact align-center">
|
||||
<h3 class="footer-title font-alt">Contacts</h3>
|
||||
<div class="img-line">
|
||||
<img src="images/lines/img-line-40.png" data-at2x="images/lines/img-line-40@2x.png" alt>
|
||||
</div>
|
||||
<p>Little Lonsdale St, Talay Victoria 8011 Philippines</p>
|
||||
E-mail: <a href="#">mail@mail.com</a><br />
|
||||
Tel: <a href="#">+4723-000-5555</a><br />
|
||||
Fax: <a href="#">+4723-000-5556</a>
|
||||
<h3 class="footer-title-small font-alt">Working Hours</h3>
|
||||
Mon - Fr: 9:00 - 19:00 <br />
|
||||
Sat: 10:00 - 15:00
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- / footer contacts -->
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- / footer top -->
|
||||
|
||||
<!-- footer bottom -->
|
||||
|
||||
<div class="bottom-footer">
|
||||
<div class="container">
|
||||
|
||||
<!-- footer copy -->
|
||||
|
||||
<div class="footer-copy">
|
||||
Copyright © 2024 YogiBoook. All rights reserved. Terms of Use l Privacy Policy
|
||||
</div>
|
||||
|
||||
<!-- / footer copy -->
|
||||
|
||||
<!-- footer social -->
|
||||
|
||||
<div class="footer-soc-links">
|
||||
<a href="#">
|
||||
<i class="flaticon-social"></i>
|
||||
</a>
|
||||
<a href="#">
|
||||
<i class="flaticon-social-4"></i>
|
||||
</a>
|
||||
<a href="#">
|
||||
<i class="flaticon-social-5"></i>
|
||||
</a>
|
||||
<a href="#">
|
||||
<i class="flaticon-connection"></i>
|
||||
</a>
|
||||
<a href="#">
|
||||
<i class="flaticon-social-2"></i>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- / footer social -->
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<!-- / footer bottom -->
|
||||
|
||||
</footer>
|
||||
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
$linkglobal="http://localhost/yogiwhere/public/schoolarea";
|
||||
|
||||
$fromaddresssmail="info@acscreativesolutions.com";
|
||||
|
||||
$openssl_encryptionAlgorithm = 'AES-128-CTR';
|
||||
|
||||
$openssl_encryptionKey = '6LdmQRcUAADGAJ530rqWaAxbuyPA9kZaO6r1I_MC6';
|
||||
|
||||
?>
|
||||
@@ -0,0 +1,79 @@
|
||||
<?php
|
||||
|
||||
ini_set('display_errors', 1);
|
||||
ini_set('display_startup_errors', 1);
|
||||
error_reporting(E_ALL | E_STRICT);
|
||||
// This should be equal to: PATH_TO_VANGUARD_FOLDER/extra/auth.php
|
||||
include('../../extra/auth.php');
|
||||
//require_once __DIR__ . '/extra/auth.php';
|
||||
|
||||
// Here we just check if user is not
|
||||
// logged in, and in that case we redirect
|
||||
// the user to vanguard login page.
|
||||
|
||||
if (! Auth::check()) {
|
||||
|
||||
redirectTo('../../public/login');
|
||||
|
||||
}
|
||||
|
||||
$user = Auth::user();
|
||||
|
||||
$iduserlogin=$user->present()->id;
|
||||
$nameuser=$user->present()->first_name;
|
||||
$surnameuser=$user->present()->last_name;
|
||||
$emailuser=$user->present()->email;
|
||||
$avatar=$user->present()->avatar;
|
||||
|
||||
$kindofrole=$user->present()->role_id;
|
||||
|
||||
|
||||
|
||||
//$user = "1";
|
||||
//$iduserlogin="1";
|
||||
//$nameuser="Claudio";
|
||||
//$emailuser="info@claudiosironi.com";
|
||||
|
||||
|
||||
?>
|
||||
|
||||
|
||||
|
||||
<?php
|
||||
if (session_status() == PHP_SESSION_NONE) {
|
||||
session_start();
|
||||
}
|
||||
|
||||
$_SESSION["iduserlogin"]=$iduserlogin;
|
||||
$iduserlog=$_SESSION["iduserlogin"];
|
||||
$_SESSION["nameuser"]=$nameuser;
|
||||
$_SESSION["surnameuser"]=$surnameuser;
|
||||
$_SESSION["emailuser"]=$emailuser;
|
||||
$_SESSION["photouser"]=$avatar;
|
||||
$photouser=$_SESSION["photouser"];
|
||||
?>
|
||||
<?php
|
||||
|
||||
if (isset($_GET['info'])) {
|
||||
$infobox=$_GET['info'];
|
||||
$_SESSION["infobox"]=$infobox;
|
||||
}
|
||||
if (isset($_SESSION["infobox"])) {
|
||||
$infobox=$_SESSION["infobox"];
|
||||
} else {
|
||||
$infobox=""; }
|
||||
|
||||
?>
|
||||
<?php require_once('../Connections/yogiwherequery.php');
|
||||
|
||||
?>
|
||||
<?php require_once('../webassist/mysqli/rsobj.php'); ?>
|
||||
<?php require_once('../webassist/mysqli/queryobj.php'); ?>
|
||||
<?php require_once("../webassist/form_validations/wavt_scripts_php.php"); ?>
|
||||
|
||||
<?php //include files
|
||||
include('../languages/en/general.php');
|
||||
|
||||
include("generalsettings.php");
|
||||
|
||||
?>
|
||||
@@ -0,0 +1,89 @@
|
||||
<?php
|
||||
|
||||
ini_set('display_errors', 1);
|
||||
ini_set('display_startup_errors', 1);
|
||||
error_reporting(E_ALL | E_STRICT);
|
||||
// This should be equal to: PATH_TO_VANGUARD_FOLDER/extra/auth.php
|
||||
//include('../../extra/auth.php');
|
||||
//require_once __DIR__ . '/extra/auth.php';
|
||||
|
||||
// Here we just check if user is not
|
||||
// logged in, and in that case we redirect
|
||||
// the user to vanguard login page.
|
||||
|
||||
//if (! Auth::check()) {
|
||||
|
||||
// redirectTo('../../public/login');
|
||||
|
||||
//}
|
||||
|
||||
//$user = Auth::user();
|
||||
|
||||
$iduserlogin="2";
|
||||
$iduselog="2";
|
||||
$user="2";
|
||||
$nameuser="Claudio";
|
||||
$emailuser="info@claudiosironi.com";
|
||||
$surnameuser="Sironi";
|
||||
$avatar="a";
|
||||
|
||||
$kindofrole="admin";
|
||||
$birthday="1975-02-19";
|
||||
$sex="male";
|
||||
$country="italy";
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
//$user = "1";
|
||||
//$iduserlogin="1";
|
||||
//$nameuser="Claudio";
|
||||
//$emailuser="info@claudiosironi.com";
|
||||
|
||||
|
||||
?>
|
||||
|
||||
|
||||
|
||||
<?php
|
||||
if (session_status() == PHP_SESSION_NONE) {
|
||||
session_start();
|
||||
}
|
||||
|
||||
if (!isset($_SESSION["idowneruser"])) {
|
||||
$_SESSION["iduserlogin"]=$iduserlogin;
|
||||
}
|
||||
$iduserlog=$_SESSION["iduserlogin"];
|
||||
$_SESSION["nameuser"]=$nameuser;
|
||||
$_SESSION["surnameuser"]=$surnameuser;
|
||||
$_SESSION["emailuser"]=$emailuser;
|
||||
$_SESSION["birthday"]=$birthday;
|
||||
$_SESSION["sex"]=$sex;
|
||||
$_SESSION["country"]=$country;
|
||||
$_SESSION["photouser"]=$avatar;
|
||||
$photouser=$_SESSION["photouser"];
|
||||
?>
|
||||
<?php
|
||||
if (isset($_GET['info'])) {
|
||||
$infobox=$_GET['info'];
|
||||
$_SESSION["infobox"]=$infobox;
|
||||
}
|
||||
if (isset($_SESSION["infobox"])) {
|
||||
$infobox=$_SESSION["infobox"];
|
||||
} else {
|
||||
$infobox=""; }
|
||||
|
||||
?>
|
||||
<?php require_once('../Connections/predoc.php');
|
||||
|
||||
?>
|
||||
<?php require_once('../webassist/mysqli/rsobj.php'); ?>
|
||||
<?php require_once('../webassist/mysqli/queryobj.php'); ?>
|
||||
<?php require_once("../webassist/form_validations/wavt_scripts_php.php"); ?>
|
||||
|
||||
<?php //include files
|
||||
include('../languages/en/general.php');
|
||||
include("generalsettings.php");
|
||||
|
||||
?>
|
||||
@@ -0,0 +1,229 @@
|
||||
<header class='sticky-header js-stick top-fixed'>
|
||||
<div class="container">
|
||||
<nav class="main-nav">
|
||||
<div class="full-wrapper align-center">
|
||||
|
||||
<!-- logo sticky -->
|
||||
|
||||
<div class="nav-logo-wrap-sticky">
|
||||
<a href="index.html" class="logo">
|
||||
<img src="images/logo.png" data-at2x="images/logo@2x.png" alt>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<!-- / logo sticky -->
|
||||
|
||||
<!-- menu mobile bars -->
|
||||
|
||||
<div class="mobile-nav">
|
||||
<i class="fa fa-bars"></i>
|
||||
</div>
|
||||
|
||||
<!-- / menu mobile bars -->
|
||||
|
||||
<div class="inner-nav desktop-nav">
|
||||
<ul class="clearlist">
|
||||
<li>
|
||||
<a href="index.html" class="nav-submenu">Home</a>
|
||||
</li>
|
||||
<li class="sep">
|
||||
<a>/</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#" class="nav-submenu active">Pages</a>
|
||||
|
||||
<!-- submenu -->
|
||||
|
||||
<ul class="submenu submenu-mega">
|
||||
<li class="submenu-mega-col">
|
||||
<a class="submenu-mega-title font-alt">Pages</a>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="home-1.html">Home 2</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="home-2.html">Home 3</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="about-1.html">About us 1</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="team.html">Our Team</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="submenu-mega-col">
|
||||
<a class="submenu-mega-title font-alt">Content</a>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="pricing-tables.html">Pricing</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="reservation.html">Reservation</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="services.html">Services</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="shortcodes.html">Shortcodes</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="typography.html">Typography</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="submenu-mega-col">
|
||||
<a class="submenu-mega-title font-alt">Portfolio</a>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="gallery-fullwidth-filter.html">Filter</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="gallery-right-sidebar.html">Right Sidebar</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="gallery-one-column.html">One Column</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="gallery-two-column.html">Two Column</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="gallery-three-column.html">Three Column</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="submenu-mega-col">
|
||||
<a class="submenu-mega-title font-alt">Blog</a>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="blog-default.html">Default</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="blog-post.html">Blog Post</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="blog-two-col.html">Two Columns</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="blog-three-col.html">Three Columns</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="blog-fullwidth.html">Full Width</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<!-- / submenu -->
|
||||
|
||||
</li>
|
||||
<li class="sep">
|
||||
<a>/</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#" class="nav-submenu">Gallery</a>
|
||||
|
||||
<!-- submenu -->
|
||||
|
||||
<ul class="submenu">
|
||||
<li>
|
||||
<a href="gallery-fullwidth.html">Full Width</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="gallery-fullwidth-filter.html">Filter</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="gallery-right-sidebar.html">Right Sidebar</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="gallery-one-column.html">One Column</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="gallery-two-column.html">Two Column</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="gallery-three-column.html">Three Column</a>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<!-- / submenu -->
|
||||
|
||||
</li>
|
||||
|
||||
<!-- logo menu -->
|
||||
|
||||
<li class="nav-logo-wrap">
|
||||
<a href="index.html" class="logo">
|
||||
<img src="images/logo.png" data-at2x="images/logo@2x.png" alt>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<!-- / logo menu -->
|
||||
|
||||
<li>
|
||||
<a href="#" class="nav-submenu">Blog</a>
|
||||
|
||||
<!-- submenu -->
|
||||
|
||||
<ul class="submenu">
|
||||
<li>
|
||||
<a href="blog-default.html">Default</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="blog-post.html">Blog Post</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="blog-two-col.html">Two Columns</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="blog-three-col.html">Three Columns</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="blog-fullwidth.html">Full Width</a>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<!-- / submenu -->
|
||||
|
||||
</li>
|
||||
<li class="sep">
|
||||
<a>/</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#" class="nav-submenu">Shop</a>
|
||||
|
||||
<!-- submenu -->
|
||||
|
||||
<ul class="submenu">
|
||||
<li>
|
||||
<a href="shop-product-list.html">Product List</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="shop-single-item.html">Single Item</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="shop-cart.html">Shop Cart</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="shop-checkout.html">Checkout</a>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<!-- / submenu -->
|
||||
|
||||
</li>
|
||||
<li class="sep">
|
||||
<a>/</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="contact.html">Location</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="menu-rect">
|
||||
<img src="images/lines/rectangle-1.png" data-at2x="images/lines/rectangle-1@2x.png" alt>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
</header>
|
||||
@@ -0,0 +1 @@
|
||||
<title>YogiBoook</title>
|
||||
@@ -0,0 +1,67 @@
|
||||
<div class="site-top-panel">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-6 col-sm-8">
|
||||
<div class="tel-wrap">
|
||||
<address>
|
||||
<a href="tel:475-1969996"><i class="fa fa-phone"></i>(+) 196-9996</a>
|
||||
<span>|</span>
|
||||
<a href="mailto:support@yogiboook.com"><i class="fa fa-envelope"></i>support@yogiboook.com</a>
|
||||
</address>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6 col-sm-4">
|
||||
<div class="lang-wrap" style="display: flex; align-items: center;">
|
||||
<div class="currency" style="margin-right: 15px;">
|
||||
<select name="billing_lang" class="cur-change">
|
||||
<option value="">USD</option>
|
||||
<option value="eur">EUR</option>
|
||||
<option value="gbp">GBP</option>
|
||||
<option value="au">AUD</option>
|
||||
</select>
|
||||
</div>
|
||||
<span>|</span>
|
||||
<div class="lang-bar" style="margin-left: 15px;">
|
||||
<ul>
|
||||
<li>
|
||||
<a href="#" class="lang-sel icl-en">
|
||||
<img src="images/flag/us.png" class="icflag" alt>
|
||||
EN
|
||||
</a>
|
||||
<ul>
|
||||
<li class="icl-fr">
|
||||
<a href="#">
|
||||
<img src="images/flag/fr.png" class="icflag" alt>
|
||||
FR
|
||||
</a>
|
||||
</li>
|
||||
<li class="icl-de">
|
||||
<a href="#">
|
||||
<img src="images/flag/de.png" class="icflag" alt>
|
||||
DE
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<!-- Icona utente con menu a discesa -->
|
||||
<div class="user-menu" style="margin-left: auto;">
|
||||
<div class="dropdown">
|
||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
|
||||
<i class="fa fa-user-circle" style="font-size:24px;"></i>
|
||||
<span class="username">John Doe</span> <!-- Nome dell'utente loggato -->
|
||||
</a>
|
||||
<ul class="dropdown-menu dropdown-menu-right">
|
||||
<li><a href="#"><i class="fa fa-user"></i> Profile</a></li>
|
||||
<li><a href="#"><i class="fa fa-cog"></i> Settings</a></li>
|
||||
<li><a href="#"><i class="fa fa-sign-out"></i> Logout</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user