JezK
Edit File: signupSuccess.php
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>Video Consultation</title> <meta name="description" content=""> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="robots" content="all,follow"> <link rel="stylesheet" href="css/bootstrap.min.css"> <link rel="stylesheet" href="css/style.css"> <link rel="stylesheet" href="css/fontastic.css"> <link rel="stylesheet" href="css/style.default.css" id="theme-stylesheet"> <link rel="stylesheet" href="build/css/intlTelInput.css" /> <script src="jquery/jquery.min.js"></script> </head> <?php include('classes/class_professional_videoconsultation.php'); $videocon=new professional_videoconsultation(); if(!isset($_SESSION['pid'])) { echo "<script>window.location='index.php';</script>"; } // include("header.php"); $bid=$videocon->encrypt_decrypt('encrypt',$_SESSION['bid']); $BusinessDeta= $videocon->getBusinessDetails($_SESSION['pid']); $protocol = ((!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off') || $_SERVER['SERVER_PORT'] == 443) ? "https://" : "http://"; $url = ($protocol . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']); $url1 = explode('professional',$url); $url = $url1[0] .'professionalsList.php?pid='.$bid; ?> <style> .url-link,.url-link:hover{ color:#00d0ff; } </style> <body> <section class="dashboard-counts section-padding"> <div class="container-fluid bg-white px-5 py-5"> <div class="bg-white text-center sucess-screen"> <div class=""> <p>Dear <?php echo $BusinessDeta['business_name']!=''?$BusinessDeta['business_name']:$BusinessDeta['professional_name'];?>,</p> </div> <div class=""> <p>Your business account has been created successfully. You can now setup your account and then you can share your business appointment URL to your customers / partners. Your exclusive business URL link is as below:</p> </div> <div class=""> <p><a href="<?php echo $url;?>" class="url-link"><?php echo $videocon->get_tiny_url($url);?></a></p> </div> <div class=""> </div> <div class="" style="text-align: left !important;"> <p>Before Proceed To Availability Please Follow The Below Steps: </p> <p> Step 1: <a href="callConfiguration.php" target="_blank" style="color: #007bff !important;">Call configuration ( Call minimum time, Call cost per slot)</a></p> <p> Step 2: <a href="availability.php" target="_blank" style="color: #007bff !important;"> Available slots </a></p> <p> Step 3: <a href="myProfile.php" target="_blank" style="color: #007bff !important;"> Payment information ( Practman to make payment to Business)</a></p> </div> <div class=""> <button class="dashboard-link"><a href="dashboard.php">Click to Proceed with DASHBOARD</a></button> </div> </div> </div> </section> </body> </html> <?php // include("footer.php") ?>