Viewing file: 29bf5eefa4f2717dff2e76da12638bd8.php (2.06 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('meta'); ?>
<meta name="keywords" content="<?php echo e($setting->meta_keywords); ?>">
<meta name="description" content="<?php echo e($setting->meta_description); ?>">
<?php $__env->stopSection(); ?>
<?php $__env->startSection('styleplugins'); ?>
<style>
.thank-you-card {
margin: 30px 0px;
background: rgba(255, 255, 255, 0.1);
padding: 40px;
border-radius: 15px;
text-align: center;
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
.thank-you-card h1 {
font-size: 2.5rem;
font-weight: bold;
}
.thank-you-card p {
font-size: 1.2rem;
margin: 20px 0;
}
.login-now-btn {
background-color: transparent;
color: #2575fc;
font-weight: bold;
text-align: center;
text-decoration: underline !important;
line-height: 30px;
letter-spacing: 1px;
font-size: 20px;
} .login-now-btn:hover {
background-color: transparent;
color: #515151 !important;
font-weight: bold;
text-align: center;
text-decoration: underline !important;
line-height: 30px;
letter-spacing: 1px;
font-size: 20px;
}
</style>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('content'); ?>
<main class="solo-p-moblie">
<div class="mb-md-1 pb-md-3"></div>
<div class="container">
<div class="row">
<div class="thank-you-card col-lg-12 col-md-6">
<h1>Thank You!</h1>
<p>Your account has been created successfully! Log in now to explore exclusive deals and start your shopping journey.</p>
</p>
<a href="<?php echo e(route('user.login')); ?>" class="login-now-btn">Login now</a>
</div>
</div>
</div>
</main>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('master.front', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH E:\ecommerce1\core\resources\views/front/thank_you.blade.php ENDPATH**/ ?>
|