Viewing file: thank_you.blade.php (1.67 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
@extends('master.front') @section('meta') <meta name="keywords" content="{{ $setting->meta_keywords }}"> <meta name="description" content="{{ $setting->meta_description }}"> @endsection @section('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; color: white; } .thank-you-card p { font-size: 1.2rem; margin: 20px 0; color: white; } .login-now-btn { background: #ff962d; padding: 10px 20px; border-radius: 5px; color: white; text-decoration: none !important;
font-weight: bold; text-align: center; line-height: 30px; letter-spacing: 1px; font-size: 20px; } .login-now-btn:hover { font-weight: bold; text-align: center; line-height: 30px; letter-spacing: 1px; font-size: 20px; } </style> @endsection @section('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="{{route('user.login')}}" class="login-now-btn">Login now</a> </div> </div> </div> </main> @endsection
|