thankyou page added

This commit is contained in:
2025-08-19 17:52:44 +05:45
parent 216c59c54c
commit 5f7df19915
5 changed files with 221 additions and 29 deletions

View File

@@ -131,10 +131,10 @@
<section class="lqd-section pb-160">
<div class="container">
<div class="row" id="interactiveSection">
{{-- <div class="col col-lg-7">
<div class="row" id="interactiveSection">
{{-- <div class="col col-lg-7">
<div class="wizard-container">
<div class="nav" id="step-nav">
@@ -251,8 +251,8 @@
</div>
</div> --}}
<div class="col col-lg-7">
<form id="cost-calculator">
<div class="col col-lg-7">
<form id="cost-calculator">
<div class="cost-choosing">
<div class="step-content active" id="step1">
@@ -452,34 +452,34 @@
</div>
</div>
</form>
</form>
</div>
<div class="col col-lg-1"></div>
<div class="col col-lg-4">
<div class="total-cost">
<h4>Total <span class="text-black">Cost</span> </h4>
<table>
<thead>
<tr>
<th class="font-bold">S.N.</th>
<th class="font-bold">Select</th>
<th class="font-bold">Max Price</th>
</tr>
</thead>
<tbody id="totalCostBody">
<!-- Filled dynamically -->
</tbody>
</table>
</div>
</div>
</div>
<div class="col col-lg-1"></div>
<div class="col col-lg-4">
<div class="total-cost">
<h4>Total <span class="text-black">Cost</span> </h4>
<table>
<thead>
<tr>
<th class="font-bold">S.N.</th>
<th class="font-bold">Select</th>
<th class="font-bold">Max Price</th>
</tr>
</thead>
<tbody id="totalCostBody">
<!-- Filled dynamically -->
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>

View File

@@ -0,0 +1,24 @@
@extends('client.raffles.layouts.app')
@section('content')
<div class="thankyou-page">
<div class="thank-you-card">
<div class="thankyou-logo">
<img src="{{ asset('raffles\assets\images\icons\monkey4.png') }}" alt="">
</div>
<h1 class="thank-you-title">Thank You!</h1>
<p class="thank-you-message">
Thank you for contacting us. We'll get back to you soon.
</p>
<a href="/" class="btn-home">
<svg viewBox="0 0 24 24">
<path d="M3 9l9-7 9 7v11a2 2 0 01-2 2H5a2 2 0 01-2-2z"/>
</svg>
Return to Home Page
</a>
</div>
</div>
@endsection