first commit

This commit is contained in:
2024-04-16 15:43:24 +05:45
commit b49e06fa93
4387 changed files with 543889 additions and 0 deletions

View File

@ -0,0 +1,185 @@
@extends(env("CLIENT_PATH").".welcome")
@section("content")
<div class="form-box">
<div class="infotext">
<h1> Visitor Confirmation</h1>
<h5>Welcome <?php echo $data->name; ?></h5>
</div>
<form>
@csrf
<div class="form-row">
<div class="col-12 col-sm-12 col-md-12 col-lg-12">
<div class="form-group"><label for="from-name">Name</label>
<input class="form-control" type="text" id="from-name" name="name" required="" disabled value="<?php echo $data->name; ?>">
</div>
</div>
</div>
<div class="form-row">
<div class="col-12 col-sm-6 col-md-12 col-lg-6">
<div class="form-group"><label for="from-email">Email</label>
<input class="form-control" type="email" value="<?php echo $data->email; ?>" id="from-email" name="email" required="" disabled>
</div>
</div>
<div class="col-12 col-sm-6 col-md-12 col-lg-6">
<div class="form-group"><label for="from-phone">Mobile Number</label>
<div class="input-group">
<input class="form-control" type="text" value="<?php echo $data->mobile; ?>" id="from-phone" name="mobile" required="" disabled>
</div>
</div>
</div>
</div>
<div class="form-row">
<div class="col-12 col-sm-6 col-md-12 col-lg-6">
<div class="form-group"><label for="from-qualifications">Highest Qualification</label>
<input class="form-control" type="text" value="<?php echo $data->highest_qualification; ?>" id="from-qualifications" name="from-qualifications" required="" disabled>
</div>
</div>
<div class="col-12 col-sm-6 col-md-12 col-lg-6">
<div class="form-group"><label for="board">University / Board:</label>
<div class="input-group">
<input class="form-control" type="text" value="<?php echo $data->highest_college; ?>" required="" disabled>
</div>
</div>
</div>
</div>
<div class="form-row">
<div class="col-md-12">
<div class="form-group"><label for="preferred_destination">Preferred Study Destination:</label>
<div class="select-group">
<input class="form-control" type="text" value="<?php echo $data->intrested_for_country; ?>" required="" disabled>
</div>
</div>
</div>
</div>
<div class="form-row">
<div class="col-12 col-sm-12 col-md-12 col-lg-12">
<div class="form-group"><label for="from-calltime">Message / Enquiry</label>
<input class="form-control" type="text" value="<?php echo $data->remarks; ?>" required="" disabled>
</div>
</div>
</div>
</div>
</form>
</div>
@endsection
@push("css")
<style>
* {
box-sizing: border-box;
}
body{
background: #9c1e5b;
}
.form-box{
display: block;
margin: 0 auto;
margin-top: 5%;
margin-bottom: 5%;
background-color: white;
width: 98%;
border-radius: 5px;
box-shadow: 10px 10px 0 0 #3e2c75;
}
.boximage{
width: 100%;
height: auto;
background-size: cover;
border-radius: 5px 5px 0 0;
}
.infotext {
width: 100%;
padding: 3%;
text-align: center;
color: #162c38;
font-family: sans-serif;
}
h1{
font-family: 'Roboto Slab', serif;
font-size: 1.1em;
color: #162c38;
text-transform: uppercase;
}
.infotext p{
line-height: 1.5em;
letter-spacing:0.05em;
}
form{
width: 100%;
padding: 5%;
}
.required-input{
color: #f00;
}
input{
display: block;
width: 100%;
border: solid 1px #bbb7b7;
border-radius: 5px;
margin-bottom: 15px;
padding: 2%;
font-size: 0.8em;
font-family: sans-serif;
letter-spacing:0.1em;
color: #888;
text-align: left;
}
input[type=submit]{
border: none;
border-radius: 5px;
background-color: #a82d2d;
color:#fff;
text-align: center;
}
input[type=submit]:hover{
background-color: #711616;
cursor: pointer;
}
.form-control{
height: 50px;
background: #ecf0f4;
border-color: transparent;
padding: 0 15px;
font-size: 16px;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.form-control:focus{
border-color: #00bcd9;
-webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
-moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
}
textarea.form-control{
height: 160px;
padding-top: 15px;
resize: none;
}
.content-column ul li {
list-style-type: disc;
margin-left: 20px;
}
</style>
@endpush

View File

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<title>@yield('email_subject')</title>
</head>
<body>
<div>
@yield('content')
</div>
</body>
</html>

View File

@ -0,0 +1,26 @@
@component('mail::message')
Dear {{$formData['name']}},
Thank you for submitting the online enquiry form. We appreciate your interest in our services. Our team has received your request, and we are excited to assist you.
You can expect to hear back from our team within the next working day. We are dedicated to providing excellent service and will do our best to address your enquiry thoroughly.
If you have any further questions or need immediate assistance, feel free to contact us at any time.
Just for your reference, here below are your submitted details.
- **Name:** {{ $formData['name'] }}
- **Email:** {{ $formData['email'] }}
- **Phone:** {{ $formData['phone'] }}
- **Preferred Destination:** {{ $formData['preferred_destination'] }}
- **Mode of Counselling:** {{ $formData['mode_of_counselling'] }}
- **Nearest Branch:** {{ $formData['nearest_branch'] }}
- **Message:** {{ $formData['message'] }}
Best regards,
WRI Education Webmaster
@endcomponent

View File

@ -0,0 +1,22 @@
@component('mail::message')
# New Online Enquiry Form Submission
Congratulations on receiving a new online enquiry form submission!
Your expertise and dedication have attracted yet another prosperous user seeking guidance. We are excited to share the details of the form that has been submitted:
Thank you for making a difference in people's lives. Keep up the excellent work!
- **Name:** {{ $formData['name'] }}
- **Email:** {{ $formData['email'] }}
- **Phone:** {{ $formData['phone'] }}
- **Preferred Destination:** {{ $formData['preferred_destination'] }}
- **Mode of Counselling:** {{ $formData['mode_of_counselling'] }}
- **Nearest Branch:** {{ $formData['nearest_branch'] }}
- **Message:** {{ $formData['message'] }}
Best regards,
{{env("APP_NAME")}}
@endcomponent

View File

@ -0,0 +1,17 @@
@extends('emails.email-template')
@section('content')
<p>Dear {{ $formData['name'] }},</p>
<h3> Just for your reference, here below are your submitted details.</h3>
<p>Name: {{ $formData['name'] }}</p>
<p>Email: {{ $formData['email'] }}</p>
<p>Phone: {{ $formData['mobile'] }}</p>
<p>Warm regards,</p>
<p> wri</p>
<p> 9841327905</p>
@endsection

View File

@ -0,0 +1,44 @@
@extends('emails.email-template')
@section('content')
<p>Dear {{ $formData['name'] }},</p>
<h1>Thank You for Registering!</h1>
<p>Your participation has been confirmed for the upcoming <strong>wri International Education Fair 2023</strong> scheduled for <strong>1st October, 2023, Sunday</strong> at our wri office premises in <em>Putalisadak Chowk, Putalisadak (way to Bagbazar)</em>!</p>
<h2>Event Details:</h2>
<ul>
<li>One Single Day!</li>
<li>One Single Place!</li>
<li>All your craved study destinations in one place!</li>
<li>Meet 150+ University Representatives from <strong>Australia</strong>, <strong>Canada</strong>, <strong>UK</strong>, & <strong>USA</strong>!</li>
<li>On Spot Offer Letter, scholarships and more…</li>
</ul>
<p>"<em>We lead because we are differently better."</em> This encapsulates our unwavering commitment to excellence and innovation in the realm of international education. We invite you to join us and experience this difference firsthand.</p>
<h2>What Awaits You:</h2>
<ul>
<li>Direct Engagement with University Officials: Gain exclusive access to representatives from renowned universities in Australia, Canada, the UK, and the USA.</li>
<li>Irresistible Offers and Discounts: Discover enticing offers and substantial discounts on tuition fees and related expenses, making world-class education more accessible than ever.</li>
<li>Personalized Guidance: Our team of experienced advisors will be on hand to provide personalized counseling, helping you chart your academic journey, navigate application processes, and make informed choices about your future.</li>
<li>Up to 100% Scholarships: Learn about a plethora of scholarship opportunities that can potentially cover the entirety of your educational costs, ensuring financial concerns don't hinder your academic ambitions.</li>
<li>Fun and Games: Immerse yourself in a day of exciting activities and games, adding an element of enjoyment to your educational exploration.</li>
<li>Exciting Gifts: As a token of our appreciation, attendees will have the chance to win captivating prizes, including QFX movie tickets and more.</li>
</ul>
<p>We invite you to embrace this exceptional opportunity to embark on your international education journey. Join us at the wri International Education Fair and uncover the unique qualities that set us apart.</p>
<p>To RSVP or obtain more details, please reach out to us at <strong>WhatsApp 9841327905</strong>. We eagerly anticipate your presence at the wri International Education Fair on <strong>Sunday, October 1st, 2023</strong> from <strong>10 am to 5 pm</strong>. Together, let's step into a brighter and more promising future.</p>
<img src="{{ $message->embed(public_path('wri/assets/images/post_for_mail.jpg')) }}" alt="Embedded Image">
<h3> Just for your reference, here below are your submitted details.</h3>
<p>Name: {{ $formData['name'] }}</p>
<p>Email: {{ $formData['email'] }}</p>
<p>Phone: {{ $formData['mobile'] }}</p>
<p>Warm regards,</p>
<p> wri</p>
<p> 9841327905</p>
@endsection

View File

View File

@ -0,0 +1,661 @@
@extends(env('CLIENT_PATH') . '.welcome')
@section('content')
<!--begin home section -->
<section class="home-section" id="home">
<!--begin container -->
<div class="container">
<!--begin row -->
<div class="row">
<!--begin col-md-7-->
<div class="col-md-7 padding-top-70">
</div>
<!--end col-md-7-->
<!--begin col-md-5-->
<div class="col-md-5 wow bounceIn" data-wow-delay="0.5s" style="visibility: visible; animation-delay: 0.5s; animation-name: bounceIn;">
<!--begin register-form-wrapper-->
<div class="register-form-wrapper wow bounceIn" data-wow-delay="0.5s" style="visibility: visible; animation-delay: 0.5s; animation-name: bounceIn;">
<h3>Start Your Application</h3>
<!--begin form-->
<div>
<!--begin success message -->
<p class="register_success_box" style="display:none;">We received your message and you'll hear from us soon. Thank You!</p>
<!--end success message -->
<!--begin register form -->
<form method="post" action="#" id="enquiry-form" class="register-form register">
@csrf
<input type="hidden" name="sources_id" value="3" />
<input type="hidden" name="campaigns_id" value="<?php echo SITEVARS->Campaigns[0]->campaign_id; ?>" />
<input class="register-input white-input" required="" name="name" placeholder="Full Name*" type="text" id="from-name">
<input class="register-input white-input" required="" name="email" placeholder="Email Address*" type="email" id="from-email" >
<input class="register-input white-input" required="" name="mobile" placeholder="Mobile Number*" type="text" id="from-phone" pattern="9\d{9}">
<select class="register-input white-input" id="from-qualifications" type="text" name="qualification"
required="">
<option value="">Select Qualification</option>
<option value="SEE/SLC">SEE/SLC</option>
<option value="A levels">A levels</option>
<option value="10+2/PCL">10+2/PCL</option>
<option value="Bachelors (3 years)">Bachelors (3 Years)</option>
<option value="Bachelors (4 years)">Bachelors (4 Years)</option>
<option value="Master's and Above">Master's and Above</option>
</select>
<input class="register-input white-input" required="" name="register_names" placeholder="Grade" type="text">
<input value="Apply Now" class="register-submit" type="submit">
</form>
<!--end register form -->
</div>
<!--end form-->
</div>
<!--end register-form-wrapper-->
</div>
<!--end col-md-5-->
</div>
<!--end row -->
</div>
<!--end container -->
</section>
<!--end home section -->
<!--begin section-grey -->
<section class="section-green section-top-border" id="about">
<!--begin container -->
<div class="container">
<!--begin row -->
<div class="row">
<!--begin col-md-6-->
<div class="col-md-6">
<!--begin video-popup-wrapper-->
<div class="video-popup-wrapper">
<!--begin popup-gallery-->
<div class="popup-gallery">
<img src="{!! template('images/img2.jpg')!!}" class="width-100 video-popup-image" alt="pic">
<a class="popup4 video-play-icon" href="https://www.youtube.com/watch?v=Q9g4ZD-BwX0&t=1s">
<i class="fas fa-play"></i>
</a>
</div>
<!--end popup-gallery-->
</div>
<!--end video-popup-wrapper-->
</div>
<!--end col-md-6-->
<!--begin col-md-6-->
<div class="col-md-6 padding-left-20">
<h2 class="white-text">WRI Educational Consultancy</h2>
<p class="white-text">WRI CONSULTANCY was established with a motive to provide quality service to students whose strive is to earn academic qualification from overseas. WRI is an education consultancy registered as WRI EDUCATION CONSILTANCY under the company act of Nepal Government. We are located at new baneshwor, Opposite to BICC WEST GATE, 5TH FLOOR OF NEPAL INVESTMENT MEGA BANK We represent prestigious universities and colleges in the India, Australia, Japan, New Zealand Canada and many more. We guide students all the way from the university/college admissions to the successful visa interviews and enrollments at the institution of your choice.</p>
</div>
<!--end col-md-6-->
</div>
<!--end row -->
</div>
<!--end container -->
<!--begin container -->
</section>
<!--end section-grey -->
</section>
<!--end section-white -->
<!--begin section-green -->
<!--begin pricing section -->
<section class="section-grey section-top-border" id="whyuk">
<!--begin section-white -->
<div class="container">
<!--begin row -->
<div class="row">
<!--begin col-md-12 -->
<div class="col-md-12 text-center">
<h2 class="section-title">Why Choose UK?</h2>
<p class="section-subtitle">The United Kingdom stands as an esteemed destination for international students seeking a world-class education. </p>
</div>
<!--end col-md-12 -->
<!--begin col-md-4 -->
<div class="col-md-4">
<div class="main-services">
<img src="{!! template('images/main-service1.png')!!}" class="width-100" alt="pic">
<h3>Academic Excellence</h3>
<p>The UK boasts some of the world's top universities, providing high-quality education and a globally recognized degree.</p>
</div>
</div>
<!--end col-md-4 -->
<!--begin col-md-4 -->
<div class="col-md-4">
<div class="main-services">
<img src="{!! template('images/main-service2.png')!!}" class="width-100" alt="pic">
<h3>Cultural Diversity and Networking</h3>
<p>The UK's diverse international student community fosters a global perspective and provides opportunities to build valuable international networks.</p>
</div>
</div>
<!--end col-md-4 -->
<!--begin col-md-4 -->
<div class="col-md-4">
<div class="main-services">
<img src="{!! template('images/main-service3.png')!!}" class="width-100" alt="pic">
<h3>Language Advantage</h3>
<p>Studying in an English-speaking country improves language skills, vital for academic success and future career opportunities.</p>
</div>
</div>
<!--end col-md-4 -->
</div>
<!--end row -->
</div>
<!--end container -->
</section>
<!--end pricing section -->
<!--begin section-white -->
<section class="section-white no-padding-bottom section-top-border" id="aboutuk">
<!--begin container -->
<div class="container">
<!--begin row -->
<div class="row">
<!--begin col-md-6-->
<div class="col-md-6 padding-top-120 text-center">
<p class="testimonial-single">“The UK beckons international students with world-class education, renowned universities like Oxford and Cambridge, and a diverse, inclusive community. English immersion, diverse programs, research opportunities, and post-study work options further enrich the experience. Its rich history, cultural tapestry, and support services make the UK an ideal academic destination.”</p>
</div>
<!--end col-md-6-->
<!--begin col-md-6-->
<div class="col-md-6">
<img src="{!! template('images/testimonials-woman.jpg')!!}" class="width-100" alt="pic">
</div>
<!--end col-md-6-->
</div>
<!--end row -->
</div>
<!--end container -->
</section>
<!--end section-white -->
<!--begin faq section -->
<section class="section-white small-padding-bottom" id="faqs">
<!--begin container-->
<div class="container">
<!--begin row-->
<div class="row">
<!--begin col-md-6-->
<div class="col-md-6 margin-top-10">
<img src="{!! template('images/img-faq.png')!!}" class="width-100 " alt="picture">
</div>
<!--end col-sm-6-->
<!--begin col-md-6-->
<div class="col-md-6 margin-top-20">
<h3>Frequently Asked Questions</h3>
<!--begin accordion -->
<div class="accordion" id="accordionFAQ">
<!--begin card -->
<div class="card">
<div class="card-header" id="headingOne">
<h5 class="mb-0">
<button class="btn btn-link" type="button" data-toggle="collapse" data-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
1. Why choose WRI for your UK future?
</button>
</h5>
</div>
<div id="collapseOne" class="collapse show" aria-labelledby="headingOne" data-parent="#accordionFAQ">
<div class="card-body">
WRI Education Consultancy has an excellent track record for making students UK study aspirations into reality. With swift visa policies, quick application preparation and excellent options for higher studies in top UK universities, we are here for all your abroad study needs when it comes to the UK.
</div>
</div>
</div>
<!--end card -->
<!--begin card -->
<div class="card">
<div class="card-header" id="headingTwo">
<h5 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
2. What is the Dashain Tihar Mahotsav?
</button>
</h5>
</div>
<div id="collapseTwo" class="collapse" aria-labelledby="headingTwo" data-parent="#accordionFAQ">
<div class="card-body">
This festival season, WRI Education is bringing you an exciting offer to make your UK future a swift reality! If youre visa has been rejected, your IELTS/PTE score is low or you have a substantial gap in your studies, you can still apply to the UK with us.
</div>
</div>
</div>
<!--end card -->
<!--begin card -->
<div class="card">
<div class="card-header" id="headingThree">
<h5 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
3. Why should I apply for the Dashain Tihar Mahotsav?
</button>
</h5>
</div>
<div id="collapseThree" class="collapse" aria-labelledby="headingThree" data-parent="#accordionFAQ">
<div class="card-body">
If youre looking for further studies in the UK, WRIs Dashain Tihar Mahotsav is for you! You can apply for excellent Bachelors and Masters courses in your field of interest with us, and take a step towards a global future right away.
</div>
</div>
</div>
<!--end card -->
<!--begin card -->
<div class="card">
<div class="card-header" id="headingFour">
<h5 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapseFour" aria-expanded="false" aria-controls="collapseFour">
4. Am I eligible to apply to the UK?
</button>
</h5>
</div>
<div id="collapseFour" class="collapse" aria-labelledby="headingFour" data-parent="#accordionFAQ">
<div class="card-body">
YES! If youre doubtful to be applying for UK studies, dont be. We are here to make your application process smooth with our swift visa policies, quick application preparation. Low IELTS/PTE score, visa rejection and study gap may discourage you, but we can help you along the way and ensure your UK studies future despite any challenges. So Apply today!
</div>
</div>
</div>
<!--end card -->
</div>
<!--end accordion -->
</div>
<!--end col-sm-6-->
</div>
<!--end row-->
</div>
<!--end container-->
</section>
<!--end faq section -->
<!--begin testimonials section -->
<section class="section-grey medium-paddings section-bottom-border" id="successstories">
<!--begin container -->
<div class="container">
<!--begin row -->
<div class="row">
<!--begin col md 12 -->
<div class="col-md-8 mx-auto padding-bottom-40">
<!--begin testimonials carousel -->
<div id="carouselIndicators2" class="carousel slide" data-ride="carousel">
<!--begin carousel-indicators -->
<ol class="carousel-indicators testimonials-indicators">
<li data-target="#carouselIndicators2" data-slide-to="0" class="active"></li>
<li data-target="#carouselIndicators2" data-slide-to="1"></li>
<li data-target="#carouselIndicators2" data-slide-to="2"></li>
</ol>
<!--end carousel-indicators -->
<!--begin carousel-inner -->
<div class="carousel-inner">
<!--begin carousel-item -->
<div class="carousel-item active">
<!--begin testim-inner -->
<div class="testim-inner">
<img src="{!! template('images/testimonials1.jpg')!!}" alt="testimonials" class="testim-img">
<p>The attention of a traveller, should be particularly turned to the various works of nature, to mark the distinctions of the climates he may explore, and to offer such useful observations on the different productions as may occur.</p>
<h6>Sanjib Sedhai<span class="job-text"> - UK</span></h6>
</div>
<!--end testim-inner -->
</div>
<!--end carousel-item -->
<!--begin carousel-item -->
<div class="carousel-item">
<!--begin testim-inner -->
<div class="testim-inner">
<img src="{!! template('images/testimonials2.jpg')!!}" alt="testimonials" class="testim-img">
<p>"WRI Consultancy's exceptional guidance and support made my academic transition effortless. Their expertise and personalized approach set them apart."</p>
<h6>Khusbu Kumari Thakur<span class="job-text"> - UK</span></h6>
</div>
<!--end testim-inner -->
</div>
<!--end carousel-item -->
<!--begin carousel-item -->
<div class="carousel-item">
<!--begin testim-inner -->
<div class="testim-inner">
<img src="{!! template('images/testimonials3.jpg')!!}" alt="testimonials" class="testim-img">
<p>"WRI Educational Consultancy exceeded my expectations. Their personalized approach, expert guidance, and transparent process made my academic journey seamless and fulfilling."</p>
<h6>Rijan Maharjan<span class="job-text"> - UK</span></h6>
</div>
<!--end testim-inner -->
</div>
<!--end carousel-item -->
</div>
<!--end carousel-inner -->
</div>
<!--end testimonials carousel -->
</div>
<!--end col md 12-->
</div>
<!--end row -->
</div>
<!--end container -->
</section>
<!--end testimonials section -->
<!--begin blog -->
<!--begin contact -->
<section class="section-white section-top-border" id="contact">
<!--begin container-->
<div class="container">
<!--begin row-->
<div class="row">
<!--begin col-md-6 -->
<!--<div class="col-md-6">-->
<!-- <h4>Get in touch</h4>-->
<!--begin success message -->
<!-- <p class="contact_success_box" style="display:none;">We received your message and you'll hear from us soon. Thank You!</p>-->
<!--end success message -->
<!--begin contact form -->
<!-- <form id="contact-form" class="contact" action="#" method="post">-->
<!-- <input class="contact-input white-input" required="" name="contact_names" placeholder="Full Name*" type="text">-->
<!-- <input class="contact-input white-input" required="" name="contact_email" placeholder="Email Adress*" type="email">-->
<!-- <input class="contact-input white-input" required="" name="contact_phone" placeholder="Phone Number*" type="text">-->
<!-- <textarea class="contact-commnent white-input" rows="2" cols="20" name="contact_message" placeholder="Your Message..."></textarea>-->
<!-- <input value="Send Message" id="submit-button" class="contact-submit" type="submit">-->
<!-- </form>-->
<!--end contact form -->
<!--</div>-->
<!--end col-md-6 -->
<div class="col-md-6">
<h4>How to find us</h4>
<iframe src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d14131.663349976323!2d85.335577!3d27.688996!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x39eb199610b5c873%3A0x23a623226de30e94!2sWRI%20Education%20Consultancy!5e0!3m2!1sen!2sus!4v1697599053245!5m2!1sen!2sus" width="600" height="270" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
<!--begin col-md-6 -->
<div class="col-md-6">
<h5>Head Office</h5>
<p class="contact-info"><i class="fas fa-map-marker-alt"></i> New Baneshwore Opposite of BICC Building West Entrance Gate</p>
<p class="contact-info"><i class="fas fa-envelope"></i> <a href="mailto:info@wrieducation.com">info@wrieducation.com</a></p>
<p class="contact-info"><i class="fas fa-phone"></i> +977 9801 133 995</p>
</div>
<!--end col-md-6 -->
</div>
<!--end row-->
</div>
<!--end container-->
</section>
<!--end contact-->
@endsection
@push('js')
<script>
$(document).ready(function() {
$('#enquiry-form').submit(function(e) {
e.preventDefault();
$("#submitButton").prop("disabled",true);
var formData = $(this).serialize();
var response = "";
$.ajax({
type: 'POST',
url: '<?php echo route('registration.submit'); ?>',
data: formData,
success: function(response) {
if (response.status) {
$('#registration-id').text(response.registration_id);
$('#success-modal-label').text("Registration is successful");
$('#success-modal-qr').html("<img src='" + response.qr_code +
"' class='img-fluid' />");
var downloadLink = document.createElement('a');
downloadLink.href = response.qr_code;
downloadLink.download =
'wri_international_education_fair_qrcode.png';
$('#success-modal').modal('show');
$form[0].reset();
$("#submitButton").prop("disabled",false);
} else if (response.message ==
'Mobile number already exists. Returning existing data.') {
var existingRegistrationData = response.registration;
var downloadLink = document.createElement('a');
downloadLink.href = response.qr_code;
downloadLink.download =
'wri_international_education_fair_qrcode.png';
$('#success-modal-label').text(response.message);
$('#success-modal-qr').html("<img src='" + response.qr_code +
"' class='img-fluid' />");
$('#success-modal').modal('show');
$("#submitButton").prop("disabled",false);
} else {
var errorMessages = '';
$.each(response.errors, function(field, errors) {
errorMessages += errors.join('<br>');
});
$('#error-modal .modal-body').html(errorMessages);
$('#error-modal').modal('show');
$("#submitButton").prop("disabled",false);
}
}
});
});
$('#success-modal').on('hidden.bs.modal', function() {
$('#enquiry-form')[0].reset(); // Reset the form
fbq('track', 'CompleteRegistration', {
currency: "USD",
value: 1.00
});
});
$('#downloadButton').on('click', function() {
var downloadLink = document.createElement('a');
downloadLink.href = $('#success-modal-qr img').attr('src');
downloadLink.download = 'wri_international_education_fair_qrcode.png';
downloadLink.click();
$("#submitButton").prop("disabled",false);
});
});
</script>
@endpush

View File

@ -0,0 +1,320 @@
@extends(env("CLIENT_PATH").".welcome")
@section("content")
<div class="form-box">
<div class="boximage">
<img src="<?php echo site_url(SITEVARS->Campaigns[0]->cover_photo);?>" class="img-fluid" />
</div>
<!-- <div class="infotext">
<h1> <?php //echo SITEVARS->Campaigns[0]->title;?></h1>
</div> -->
<form method="post" action="#" id="enquiry-form">
@csrf
<input type="hidden" name="sources_id" value="2" />
<input type="hidden" name="campaigns_id" value="<?php echo SITEVARS->Campaigns[0]->campaign_id; ?>" />
<div class="form-row">
<div class="col-12 col-sm-12 col-md-12 col-lg-12">
<div class="form-group"><label for="from-name">Name</label><span class="required-input">*</span>
<input class="form-control" type="text" id="from-name" name="name" required="">
</div>
</div>
</div>
<div class="form-row">
<div class="col-12 col-sm-6 col-md-12 col-lg-6">
<div class="form-group"><label for="from-email">Email</label><span class="required-input">*</span>
<input class="form-control" type="email" id="from-email" name="email" required="">
</div>
</div>
<div class="col-12 col-sm-6 col-md-12 col-lg-6">
<div class="form-group"><label for="from-phone">Mobile Number</label><span class="required-input">*</span>
<div class="input-group">
<input class="form-control" type="text" id="from-phone" name="mobile" required="">
</div>
</div>
</div>
</div>
<div class="form-row">
<div class="col-12 col-sm-6 col-md-12 col-lg-6">
<div class="form-group"><label for="from-qualifications">Highest Qualification</label><span class="required-input">*</span>
<select class="form-control" id="from-qualifications" type="text" name="qualification" required="">
<option value="">Select Qualification</option>
<option value="SEE/SLC">SEE/SLC</option>
<option value="A levels">A levels</option>
<option value="10+2/PCL">10+2/PCL</option>
<option value="Bachelors (3 years)">Bachelors (3 Years)</option>
<option value="Bachelors (4 years)">Bachelors (4 Years)</option>
<option value="Master's and Above">Master's and Above</option>
</select>
</div>
</div>
<div class="col-12 col-sm-6 col-md-12 col-lg-6">
<div class="form-group"><label for="board">University / Board:</label><span class="required-input">*</span>
<div class="input-group">
<input class="form-control" type="text" id="board" name="board" required="" autocomplete="off">
</div>
</div>
</div>
</div>
<div class="form-row">
<div class="col-md-12">
<div class="form-group"><label for="preferred_destination">Preferred Study Destination:</label><span class="required-input">*</span>
<div class="select-group">
<select name="preferred_destination" class="form-control field-info" required="">
<option value="" selected="" disabled="">Preferred Study Destination *</option>
<option value="study-in-australia">Study in Australia</option>
<option value="study-in-new-zealand">Study in New Zealand</option>
<option value="study-in-canada">Study in Canada</option>
<option value="study-in-uk">Study in UK</option>
<option value="study-in-usa">Study in USA</option>
<option value="other">Others</option>
</select>
</div>
</div>
</div>
</div>
<div class="form-row">
<div class="col-12 col-sm-12 col-md-12 col-lg-12">
<div class="form-group"><label for="from-calltime">Message / Enquiry</label><span class="required-input">*</span>
<textarea name="message" class="form-control" rows="5" re></textarea>
</div>
</div>
</div>
<div class="form-group">
<div class="form-row">
<input type="hidden" name="g-recaptcha-response" value="">
<div class="col"><button class="btn btn-success btn-block" type="submit" id="submitButton">Get Admit Pass <i class="fa fa-chevron-circle-right"></i></button></div>
</div>
</div>
</div>
</form>
<?php //pre(SITEVARS->Campaigns[0]); ?>
<div class="modal fade" id="success-modal" tabindex="-1" role="dialog" aria-labelledby="success-modal-label" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header" style="display: none;">
<h5 class="modal-title" id="success-modal-label">Success</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
<div id="modal-text-area">
</div>
<div id="success-modal-qr">
</div>
<div id="canvas-area">
</div>
</div>
<div class="modal-footer">
<button type="button" id="downloadButton" class="btn btn-success full-width" style="width: 100%;">Download : Presidential Pass</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="error-modal" tabindex="-1" role="dialog" aria-labelledby="error-modal-label" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="error-modal-label">Form Validation Errors</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
<!-- Error messages will be displayed here -->
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
@endsection
@push("js")
<script>
$(document).ready(function() {
$('#enquiry-form').submit(function(e) {
e.preventDefault();
var formData = $(this).serialize();
var response = "";
$.ajax({
type: 'POST',
url: '<?php echo route("registration.submit"); ?>',
data: formData,
success: function(response) {
// fbq('trackCustom', 'EventRegistration', {promotion: 'astro_solutions'});
fbq('track', 'PageView');
if (response.status) {
$('#registration-id').text(response.registration_id);
$('#success-modal-label').text("Registration is successful");
$('#success-modal-qr').html("<p class='text-center' style=' text-align: center!important;background-color: #830404;color: white;padding: 10px;font-weight: 600;'>Please download/save this PRESIDENTIAL PASS. You must present this to participate in the event.</p><img src='" + response.qr_code + "' class='img-fluid' />");
var downloadLink = document.createElement('a');
downloadLink.href = response.qr_code;
downloadLink.download = 'presidential_astro_solutions_qr_code.png'; // Set the desired file name
// downloadLink.click();
$('#success-modal').modal('show');
$form[0].reset();
} else if (response.message == 'Mobile number already exists. Returning existing data.') {
var existingRegistrationData = response.registration;
//$('#modal-text-area').html(JSON.stringify(existingRegistrationData));
var downloadLink = document.createElement('a');
downloadLink.href = response.qr_code;
downloadLink.download = 'presidential_astro_solutions_qr_code.png'; // Set the desired file name
//downloadLink.click();
$('#success-modal-label').text(response.message);
$('#success-modal-qr').html("<img src='" + response.qr_code + "' class='img-fluid' />");
$('#success-modal').modal('show');
} else {
var errorMessages = '';
$.each(response.errors, function(field, errors) {
errorMessages += errors.join('<br>');
});
$('#error-modal .modal-body').html(errorMessages);
$('#error-modal').modal('show');
}
}
});
});
$('#success-modal').on('hidden.bs.modal', function() {
$('#enquiry-form')[0].reset(); // Reset the form
});
$('#downloadButton').on('click', function() {
// Trigger the download when the button is clicked
var downloadLink = document.createElement('a');
downloadLink.href = $('#success-modal-qr img').attr('src');
downloadLink.download = 'presidential_astro_solutions_qr_code.png';
downloadLink.click();
});
});
</script>
@endpush
@push("css")
<style>
* {
box-sizing: border-box;
}
body{
}
.form-box{
display: block;
margin: 0 auto;
margin-top: 5%;
margin-bottom: 5%;
background-color: white;
width: 98%;
border-radius: 5px;
box-shadow: 10px 10px 0 0 #083079;
}
.boximage{
width: 100%;
height: auto;
background-size: cover;
border-radius: 5px 5px 0 0;
}
.infotext {
width: 100%;
padding: 3%;
text-align: center;
color: #162c38;
font-family: sans-serif;
}
h1{
font-family: 'Roboto Slab', serif;
font-size: 1.1em;
color: #162c38;
text-transform: uppercase;
}
.infotext p{
line-height: 1.5em;
letter-spacing:0.05em;
}
form{
width: 100%;
padding: 5%;
}
.required-input{
color: #f00;
}
input{
display: block;
width: 100%;
border: solid 1px #bbb7b7;
border-radius: 5px;
margin-bottom: 15px;
padding: 2%;
font-size: 0.8em;
font-family: sans-serif;
letter-spacing:0.1em;
color: #888;
text-align: left;
}
input[type=submit]{
border: none;
border-radius: 5px;
background-color: #a82d2d;
color:#fff;
text-align: center;
}
input[type=submit]:hover{
background-color: #711616;
cursor: pointer;
}
.form-control{
height: 50px;
background: #ecf0f4;
border-color: transparent;
padding: 0 15px;
font-size: 16px;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.form-control:focus{
border-color: #00bcd9;
-webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
-moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
}
textarea.form-control{
height: 160px;
padding-top: 15px;
resize: none;
}
.content-column ul li {
list-style-type: disc;
margin-left: 20px;
}
</style>
@endpush

View File

@ -0,0 +1,319 @@
@extends(env("CLIENT_PATH").".welcome")
@section("content")
<div class="form-box">
<div class="boximage">
<img src="<?php echo site_url(SITEVARS->Campaigns[0]->cover_photo);?>" class="img-fluid" />
</div>
<!-- <div class="infotext">
<h1> <?php //echo SITEVARS->Campaigns[0]->title;?></h1>
</div> -->
<form method="post" action="#" id="enquiry-form">
@csrf
<input type="hidden" name="sources_id" value="2" />
<input type="hidden" name="campaigns_id" value="<?php echo SITEVARS->Campaigns[0]->campaign_id; ?>" />
<div class="form-row">
<div class="col-12 col-sm-12 col-md-12 col-lg-12">
<div class="form-group"><label for="from-name">Name</label><span class="required-input">*</span>
<input class="form-control" type="text" id="from-name" name="name" required="">
</div>
</div>
</div>
<div class="form-row">
<div class="col-12 col-sm-6 col-md-12 col-lg-6">
<div class="form-group"><label for="from-email">Email</label><span class="required-input">*</span>
<input class="form-control" type="email" id="from-email" name="email" required="">
</div>
</div>
<div class="col-12 col-sm-6 col-md-12 col-lg-6">
<div class="form-group"><label for="from-phone">Mobile Number</label><span class="required-input">*</span>
<div class="input-group">
<input class="form-control" type="text" id="from-phone" name="mobile" required="">
</div>
</div>
</div>
</div>
<div class="form-row">
<div class="col-12 col-sm-6 col-md-12 col-lg-6">
<div class="form-group"><label for="from-qualifications">Highest Qualification</label><span class="required-input">*</span>
<select class="form-control" id="from-qualifications" type="text" name="qualification" required="">
<option value="">Select Qualification</option>
<option value="SEE/SLC">SEE/SLC</option>
<option value="A levels">A levels</option>
<option value="10+2/PCL">10+2/PCL</option>
<option value="Bachelors (3 years)">Bachelors (3 Years)</option>
<option value="Bachelors (4 years)">Bachelors (4 Years)</option>
<option value="Master's and Above">Master's and Above</option>
</select>
</div>
</div>
<div class="col-12 col-sm-6 col-md-12 col-lg-6">
<div class="form-group"><label for="board">University / Board:</label><span class="required-input">*</span>
<div class="input-group">
<input class="form-control" type="text" id="board" name="board" required="" autocomplete="off">
</div>
</div>
</div>
</div>
<div class="form-row">
<div class="col-md-12">
<div class="form-group"><label for="preferred_destination">Preferred Study Destination:</label><span class="required-input">*</span>
<div class="select-group">
<select name="preferred_destination" class="form-control field-info" required="">
<option value="" selected="" disabled="">Preferred Study Destination *</option>
<option value="study-in-australia">Study in Australia</option>
<option value="study-in-usa">Study in USA</option>
<option value="study-in-canada">Study in Canada</option>
<option value="other">Others</option>
</select>
</div>
</div>
</div>
</div>
<div class="form-row">
<div class="col-12 col-sm-12 col-md-12 col-lg-12">
<div class="form-group"><label for="from-calltime">Message / Enquiry</label><span class="required-input">*</span>
<textarea name="message" class="form-control" rows="5" re></textarea>
</div>
</div>
</div>
<div class="form-group ">
<div class="form-row">
<input type="hidden" name="g-recaptcha-response" value="">
<div class="col"><button class="btn btn-primary btn-block" type="submit" id="submitButton">Submit <i class="fa fa-chevron-circle-right"></i></button></div>
</div>
</div>
</div>
</form>
<?php //pre(SITEVARS->Campaigns[0]); ?>
<div class="modal fade" id="success-modal" tabindex="-1" role="dialog" aria-labelledby="success-modal-label" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header" style="display: none;">
<h5 class="modal-title" id="success-modal-label">Success</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
<div id="modal-text-area">
</div>
<div id="success-modal-qr">
</div>
<div id="canvas-area">
</div>
</div>
<div class="modal-footer">
<button type="button" id="downloadButton" class="btn btn-success full-width" style="width: 100%;">Download : Presidential Pass</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="error-modal" tabindex="-1" role="dialog" aria-labelledby="error-modal-label" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="error-modal-label">Form Validation Errors</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
<!-- Error messages will be displayed here -->
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
@endsection
@push("js")
<script>
$(document).ready(function() {
$('#enquiry-form').submit(function(e) {
e.preventDefault();
var formData = $(this).serialize();
var response = "";
$.ajax({
type: 'POST',
url: '<?php echo route("registration.submit"); ?>',
data: formData,
success: function(response) {
// fbq('trackCustom', 'EventRegistration', {promotion: 'astro_solutions'});
fbq('track', 'PageView');
if (response.status) {
$('#registration-id').text(response.registration_id);
$('#success-modal-label').text("Registration is successful");
$('#success-modal-qr').html("<p class='text-center' style=' text-align: center!important;background-color: #830404;color: white;padding: 10px;font-weight: 600;'>Please download/save this PRESIDENTIAL PASS. You must present this to participate in the event.</p><img src='" + response.qr_code + "' class='img-fluid' />");
var downloadLink = document.createElement('a');
downloadLink.href = response.qr_code;
downloadLink.download = 'presidential_astro_solutions_qr_code.png'; // Set the desired file name
// downloadLink.click();
$('#success-modal').modal('show');
$form[0].reset();
} else if (response.message == 'Mobile number already exists. Returning existing data.') {
var existingRegistrationData = response.registration;
//$('#modal-text-area').html(JSON.stringify(existingRegistrationData));
var downloadLink = document.createElement('a');
downloadLink.href = response.qr_code;
downloadLink.download = 'presidential_astro_solutions_qr_code.png'; // Set the desired file name
//downloadLink.click();
$('#success-modal-label').text(response.message);
$('#success-modal-qr').html("<img src='" + response.qr_code + "' class='img-fluid' />");
$('#success-modal').modal('show');
} else {
var errorMessages = '';
$.each(response.errors, function(field, errors) {
errorMessages += errors.join('<br>');
});
$('#error-modal .modal-body').html(errorMessages);
$('#error-modal').modal('show');
}
}
});
});
$('#success-modal').on('hidden.bs.modal', function() {
$('#enquiry-form')[0].reset(); // Reset the form
});
$('#downloadButton').on('click', function() {
// Trigger the download when the button is clicked
var downloadLink = document.createElement('a');
downloadLink.href = $('#success-modal-qr img').attr('src');
downloadLink.download = 'presidential_astro_solutions_qr_code.png';
downloadLink.click();
});
});
</script>
@endpush
@push("css")
<style>
* {
box-sizing: border-box;
}
body{
background: #3e2c75;
}
.form-box{
display: block;
margin: 0 auto;
margin-top: 5%;
margin-bottom: 5%;
background-color: white;
width: 98%;
border-radius: 5px;
box-shadow: 10px 10px 0 0 #9c1e5b;
}
.boximage{
width: 100%;
height: auto;
background-size: cover;
border-radius: 5px 5px 0 0;
}
.infotext {
width: 100%;
padding: 3%;
text-align: center;
color: #162c38;
font-family: sans-serif;
}
h1{
font-family: 'Roboto Slab', serif;
font-size: 1.1em;
color: #162c38;
text-transform: uppercase;
}
.infotext p{
line-height: 1.5em;
letter-spacing:0.05em;
}
form{
width: 100%;
padding: 5%;
}
.required-input{
color: #f00;
}
input{
display: block;
width: 100%;
border: solid 1px #bbb7b7;
border-radius: 5px;
margin-bottom: 15px;
padding: 2%;
font-size: 0.8em;
font-family: sans-serif;
letter-spacing:0.1em;
color: #888;
text-align: left;
}
input[type=submit]{
border: none;
border-radius: 5px;
background-color: #a82d2d;
color:#fff;
text-align: center;
}
input[type=submit]:hover{
background-color: #711616;
cursor: pointer;
}
.form-control{
height: 50px;
background: #ecf0f4;
border-color: transparent;
padding: 0 15px;
font-size: 16px;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.form-control:focus{
border-color: #00bcd9;
-webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
-moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
}
textarea.form-control{
height: 160px;
padding-top: 15px;
resize: none;
}
.content-column ul li {
list-style-type: disc;
margin-left: 20px;
}
</style>
@endpush

View File

@ -0,0 +1,65 @@
<div class="footer">
<!--begin container -->
<div class="container">
<!--begin row -->
<div class="row">
<!--begin col-md-12 -->
<div class="col-md-12 text-center">
<p>Copyright © 2023 WRI Educational Consultancy.</p>
<!--begin footer_social -->
<ul class="footer_social">
<li>
<a href="#">
<i class="fab fa-twitter"></i>
</a>
</li>
<li>
<a href="#">
<i class="fab fa-pinterest"></i>
</a>
</li>
<li>
<a href="#">
<i class="fab fa-facebook-square"></i>
</a>
</li>
<li>
<a href="#">
<i class="fab fa-instagram"></i>
</a>
</li>
<li>
<a href="#">
<i class="fab fa-skype"></i>
</a>
</li>
<li>
<a href="#">
<i class="fab fa-dribble"></i>
</a>
</li>
</ul>
<!--end footer_social -->
</div>
<!--end col-md-6 -->
</div>
<!--end row -->
</div>
<!--end container -->
</div>

View File

@ -0,0 +1,59 @@
<header class="header">
<!--begin navbar-fixed-top -->
<nav class="navbar navbar-default navbar-fixed-top">
<!--begin container -->
<div class="container">
<!--begin navbar -->
<nav class="navbar navbar-expand-lg">
<!--begin logo -->
<a class="navbar-brand" href="#">
<img src="{!! template('images/logo.png')!!}" alt="">
</a>
<!--end logo -->
<!--begin navbar-toggler -->
<button class="navbar-toggler collapsed" type="button" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"><i class="fas fa-bars"></i></span>
</button>
<!--end navbar-toggler -->
<!--begin navbar-collapse -->
<div class="navbar-collapse collapse" id="navbarCollapse" style="">
<!--begin navbar-nav -->
<ul class="navbar-nav ml-auto">
<li><a href="#home">Home</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="#whyuk">Why UK?</a></li>
<li><a href="#aboutuk">About UK</a></li>
<li><a href="#faqs">FAQs</a></li>
<li><a href="#successstories">Success Stories</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
<!--end navbar-nav -->
</div>
<!--end navbar-collapse -->
</nav>
<!--end navbar -->
</div>
<!--end container -->
</nav>
<!--end navbar-fixed-top -->
</header>

View File

@ -0,0 +1,57 @@
<?php // dd($data); ?>
<title>
<?php if (isset($data)) {
echo ($data->seo_title != "") ? $data->seo_title : $data->title;
echo " | " . SITEVARS->title;
} else {
echo SITEVARS->seo_title;
}
?>
</title>
<meta name="description" content="<?php
if (isset($data)) {
echo ($data->seo_descriptions != "") ? $data->seo_descriptions : SITEVARS->seo_description;
} else {
echo SITEVARS->seo_description;
}
?>">
<meta name="keywords" content="<?php
if (isset($data)) {
echo ($data->seo_keywords != "") ? $data->seo_keywords : SITEVARS->seo_keywords;
} else {
echo SITEVARS->seo_keywords;
}
?>">
<meta name="author" content="Bibhuti Solution Pvt. Ltd.">
<meta name="subject" content="<?php
if (isset($data)) {
echo ($data->seo_descriptions != "") ? $data->seo_descriptions : SITEVARS->seo_description;
} else {
echo SITEVARS->seo_description;
}
?>">
<meta property="og:title" content="<?php if (isset($data)) {
echo ($data->seo_title != "") ? $data->seo_title : $data->title;
echo " | " . SITEVARS->title;
} else {
echo SITEVARS->seo_title;
}
?>">
<meta property="og:description" content="<?php
if (isset($data)) {
echo ($data->seo_descriptions != "") ? $data->seo_descriptions : SITEVARS->seo_description;
} else {
echo SITEVARS->seo_description;
}
?>">
<meta property="og:image" content="<?php echo site_url(SITEVARS->og_image); ?>">
<meta property="og:url" content="<?php echo site_url(); ?>">
<meta property="og:site_name" content="<?php echo SITEVARS->title; ?>">
<?php if(isset($data))
{
echo $data->og_tags;
}
?>

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,116 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title><?php echo SITEVARS->Campaigns[0]->seo_title;?> : {{env("APP_NAME")}}</title>
<link rel="icon" type="image/x-icon" href="<?php echo SITEVARS->icon; ?>">
@if (!View::hasSection('seo'))
@include(env("CLIENT_PATH").'.partials.seo')
@endif
@yield("seo")
<!-- Stylesheets -->
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Nunito:300,300i,400,400i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="{!! template('css/bootstrap.min.css')!!}" rel="stylesheet">
<!-- Loading Template CSS -->
<link href="{!! template('css/style.css')!!}" rel="stylesheet">
<link href="{!! template('css/animate.css')!!}" rel="stylesheet">
<link href="{!! template('css/style-magnific-popup.css')!!}" rel="stylesheet">
<!-- Awsome Fonts -->
<link rel="stylesheet" href="{!! template('css/all.min.css')!!}">
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Dosis:500,600" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300i,400,400i,600,700" rel="stylesheet">
<!-- Messenger Chat Plugin Code -->
<div id="fb-root"></div>
<!-- Your Chat Plugin code -->
<div id="fb-customer-chat" class="fb-customerchat">
</div>
<script>
var chatbox = document.getElementById('fb-customer-chat');
chatbox.setAttribute("page_id", "127749977407253");
chatbox.setAttribute("attribution", "biz_inbox");
</script>
<!-- Your SDK code -->
<script>
window.fbAsyncInit = function() {
FB.init({
xfbml : true,
version : 'v18.0'
});
};
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = 'https://connect.facebook.net/en_US/sdk/xfbml.customerchat.js';
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<!-- Toastr-->
<!-- Responsive -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
@stack("css")
<?php echo SITEVARS->meta_pixel_code; ?>
{!!(SITEVARS->meta_pixel_code)?SITEVARS->meta_pixel_code:""!!}
</head>
<body class="hidden-bar-wrapper">
<div class="sbuttons">
<!-- <a href="https://www.tiktok.com/@wri_education_ktm" target="_blank" class="sbutton tiktok" tooltip="Tiktok"><i class="fab fa-tiktok"></i></a> -->
</div>
<!-- Main Header-->
@include(env("CLIENT_PATH").".partials.header")
@yield("content")
<!-- End News Section -->
@include(env("CLIENT_PATH").".partials.footer")
<script src="{!! template('js/jquery.min.js') !!}"></script>
<script src="{!! template('js/bootstrap.min.js') !!}"></script>
<script src="{!! template('js/jquery.scrollTo-min.js') !!}"></script>
<script src="{!! template('js/jquery.magnific-popup.min.js') !!}"></script>
<script src="{!! template('js/jquery.nav.js') !!}"></script>
<script src="{!! template('js/wow.js') !!}"></script>
<script src="{!! template('js/plugins.js') !!}"></script>
<script src="{!! template('js/custom.js') !!}"></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
@stack("js")
</body>
</html>