( ′∀`)σ≡σ☆))Д′)レ(゚∀゚;)ヘ=З=З=Зε≡(ノ´_ゝ`)ノ
<?php
session_start(); // Start the session to check session variables
if (!isset($_SESSION['euserid']) && !isset($_COOKIE['euserid'])) {
// Redirect to login page if not authenticated
header("Location: auth-join.php");
exit();
}
// If the user is authenticated, you can display the dashboard content
if (isset($_SESSION['euserid'])) {
$userId = $_SESSION['euserid']; // Use session 'userid'
} else {
$userId = $_COOKIE['euserid']; // Use cookie 'userid'
}
include('data/files/config.php');
// You can retrieve user data from the database if needed
// Example: Assuming you have a database connection ($pdo)
$stmt = $pdo->prepare("SELECT
users.*,
detailsbrand.*
FROM
users
LEFT JOIN
detailsbrand
ON
users.id = detailsbrand.catalogid
WHERE users.id = ?");
$stmt->execute([$userId]);
$user = $stmt->fetch();
if (empty($user['name'])) {
//if not onboarded
}
else
{
// Collect form data from the POST request
$businessName = $user['name'];
$myname = $user['catalogname'];
$designation = $user['designation'];
$businessEmail = $user['email'];
$businessWeb = $user['website'];
$businessPhone = $user['phone'];
$address = $user['address'];
$profileType = $user['type'];
$country = $user['country'];
$team = $user['team'];
$typeBrand = $user['creator'];
$facebook = $user['fb'];
$youtube = $user['yt'];
$linkedin= $user['li'];
$twitter = $user['tw'];
$tagline = $user['tagline'];
$myaddress = $user['myaddress'];
$designationBrand = $user['designation'];
$fullNameBrand = $user['catalogname'];
// Sanitize the input to prevent SQL injection (optional)
$designationBrand = htmlspecialchars($designationBrand);
$fullNameBrand = htmlspecialchars($fullNameBrand);
$nameBrand = htmlspecialchars($businessName);
$businessEmail = htmlspecialchars($businessEmail);
$websiteBrand = htmlspecialchars($businessWeb);
$phoneBrand = htmlspecialchars($businessPhone);
$address = htmlspecialchars($myaddress);
$creatorBrand = htmlspecialchars($profileType);
$typeBrand = htmlspecialchars($typeBrand);
$countryBrand = htmlspecialchars($country);
$team = htmlspecialchars($team);
$facebook = htmlspecialchars($facebook);
$youtube = htmlspecialchars($youtube);
$linkedin = htmlspecialchars($linkedin);
$twitter = htmlspecialchars($twitter);
}
// Check if the user exists
if (!$user) {
// If user doesn't exist, redirect to login page
header("Location: auth-login.php");
exit();
}
?><!DOCTYPE html>
<!-- beautify ignore:start -->
<html lang="en" class="light-style layout-wide customizer-hide" dir="ltr" data-theme="theme-default" data-assets-path="assets/" data-template="vertical-menu-template" data-style="light"><!--auth-register-multisteps.html [XR&CO'2014],10:54:56 GMT -->
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0" />
<title>Welcome to Your AI Brand Insights Platform!</title>
<meta name="description" content="Complete your onboarding process to unlock powerful insights and analytics for your brand." />
<meta name="keywords" content="">
<!-- Canonical SEO -->
<link rel="canonical" href="https://thebrand.ai/insights">
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="https://thebrand.ai/favicon/favicon.ico" />
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com/">
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap" rel="stylesheet">
<!-- Icons -->
<link rel="stylesheet" href="assets/vendor/fonts/boxicons.css" />
<link rel="stylesheet" href="assets/vendor/fonts/fontawesome.css" />
<link rel="stylesheet" href="assets/vendor/fonts/flag-icons.css" />
<!-- Core CSS -->
<link rel="stylesheet" href="assets/vendor/css/rtl/core.css" class="template-customizer-core-css" />
<link rel="stylesheet" href="assets/vendor/css/rtl/theme-default.css" class="template-customizer-theme-css" />
<link rel="stylesheet" href="assets/css/demo.css" />
<!-- Vendors CSS -->
<link rel="stylesheet" href="assets/vendor/libs/perfect-/perfect-scrollbar.css" />
<link rel="stylesheet" href="assets/vendor/libs/typeahead-js/typeahead.css" />
<!-- Vendor -->
<link rel="stylesheet" href="assets/vendor/libs/bs-stepper/bs-stepper.css" />
<link rel="stylesheet" href="assets/vendor/libs/bootstra/bootstrap-select.css" />
<link rel="stylesheet" href="assets/vendor/libs/select2/select2.css" />
<link rel="stylesheet" href="assets/vendor/libs/form-va/form-validation.css" />
<!-- Page CSS -->
<!-- Page -->
<link rel="stylesheet" href="assets/vendor/css/pages/page-auth.css">
<link rel="stylesheet" href="assets/vendor/libs/animate-css/animate.css" />
<link rel="stylesheet" href="assets/vendor/libs/sweetaler/sweetalert2.css" />
<!-- Helpers -->
<script src="assets/vendor/js/helpers.js"></script>
<!--! Template customizer & Theme config files MUST be included after core stylesheets and helpers.js in the <head> section -->
<!--? Template customizer: To hide customizer set displayCustomizer value false in config.js. -->
<script src="assets/vendor/js/template-customizer.js"></script>
<!--? Config: Mandatory theme config file contain global vars & default theme options, Set your preferred theme option in this file. -->
<script src="assets/js/config.js"></script>
<style>
.btn-primary,.btn-success {
color: #fff;
background-color: #eb008b;
border: 0;
cursor: pointer;
transition: background-color 0.3s, color 0.3s, transform 0.2s ease-out;
}
.hero-button {
box-shadow: none;
color: #fff;
letter-spacing: -0.02em;
background-color: #eb008b;
border: 0;
padding-top: 10px;
padding-right: 40px;
padding-left: 40px;
padding-bottom: 10px;
font-size: 20px;
border-radius: 15px;
cursor: pointer;
transition: background-color 0.3s, color 0.3s, transform 0.2s ease-out;
}.w-button {
color: #fff;
line-height: inherit;
cursor: pointer;
background-color: #3898ec;
border: 0;
border-radius: 0;
padding: 9px 15px;
text-decoration: none;
display: inline-block;
}
.swal2-deny{display:none!important; visibility: hidden!important;}.swal2-cancel{display:none!important; visibility: hidden!important;}
#bgX {
/* Set the background image URL */
background-image: url('https://www.thebrand.ai/brandcreator/dashboard/assets/img/illustrations/business-meeting-over-coffee.png?yy');
/* Make sure the image covers the entire background */
background-size: cover;
/* Center the background image */
/* Prevent the background image from repeating */
background-repeat: no-repeat;
/* Optional: make the background fixed when scrolling */
background-attachment: fixed;
/* Set a fallback background color */
background-color: #f0f0f0;
/* Make sure body takes full height */
height: 100vh;
margin: 0;
background-position: bottom;
background-color: #9fccde;
}
</style>
</head>
<body>
<!-- Content -->
<div class="authentication-wrapper authentication-cover">
<!-- Logo -->
<a href="index" class="app-brand auth-cover-brand gap-2">
<span class="app-brand-logo demo">
<img src="https://www.thebrand.ai/brandcreator/files/assets/logo-white3.png" style="max-height:60px">
</span>
<!-- <span class="app-brand-text demo text-heading fw-bold">Brand Insights</span>-->
</a>
<!-- /Logo -->
<div class="authentication-inner row m-0">
<!-- Left Text -->
<div class="d-none d-lg-flex col-lg-4 align-items-center justify-content-end p-5 pe-0" id="bgX">
<!-- <div class="w-px-400">-->
<!-- <img src="assets/img/illustrations/happy.jpg?rd" class="img-fluid" alt="multi-steps" width="600" data-app-dark-img="assets/img/illustrations/happy.jpg" data-app-light-img="illustrations/happy.jpg?lrj">-->
<!-- </div>-->
</div>
<!-- /Left Text -->
<!-- Multi Steps Registration -->
<div class="d-flex col-lg-8 align-items-center justify-content-center authentication-bg p-5">
<div class="w-px-700">
<div id="multiStepsValidation" class="bs-stepper border-none shadow-none mt-5">
<div class="bs-stepper-header border-none pt-12 px-0">
<div class="step" data-target="#accountDetailsValidation">
<button type="button" class="step-trigger">
<span class="bs-stepper-circle"><i class="bx bx-home"></i></span>
<span class="bs-stepper-label">
<span class="bs-stepper-title">Account</span>
<span class="bs-stepper-subtitle">Account Details</span>
</span>
</button>
</div>
<div class="line">
<i class="bx bx-chevron-right"></i>
</div>
<div class="step" data-target="#personalInfoValidation">
<button type="button" class="step-trigger">
<span class="bs-stepper-circle"><i class="bx bx-user"></i></span>
<span class="bs-stepper-label">
<span class="bs-stepper-title">Brand Details</span>
<span class="bs-stepper-subtitle">Enter Information</span>
</span>
</button>
</div>
<div class="line">
<i class="bx bx-chevron-right"></i>
</div>
<div class="step" data-target="#billingLinksValidation">
<button type="button" class="step-trigger">
<span class="bs-stepper-circle"><i class="bx bx-detail"></i></span>
<span class="bs-stepper-label">
<span class="bs-stepper-title">Social Media</span>
<span class="bs-stepper-subtitle">Social Links</span>
</span>
</button>
</div>
</div>
<div class="bs-stepper-content px-0">
<form id="multiStepsForm" onSubmit="return false">
<!-- Account Details -->
<div id="accountDetailsValidation" class="content">
<input type="hidden" id="userid" name="userid" class="form-control" value="<?php echo $userId;?>" placeholder="<?php echo 81;?>" autocomplete="off" style="display: none" />
<div class="content-header mb-6">
<h4 class="mb-0">Help Us Tailor the Insights to You!</h4>
<p class="mb-0">Let’s set up your profile to tailor insights to your needs.</p>
</div>
<div class="row g-6">
<!--
<?php /*if (!empty($creatorBrand)) { echo 'value="' . $creatorBrand . '"'; } */?>
<?php /*if (!empty($typeBrand)) { echo 'value="' . $typeBrand . '"'; } */?>
<?php /*if (!empty($countryBrand)) { echo 'value="' . $countryBrand . '"'; } */?>
--><?php /*if (!empty($team)) { echo 'value="' . $team . '"'; } */?>
<div class="col-sm-6">
<label class="form-label" for="multiStepsBusinessname">Business or Brand Name</label>
<input type="text" name="multiStepsBusinessname" id="multiStepsBusinessname" class="form-control" placeholder="Business Name" <?php if (!empty($nameBrand)) { echo 'value="' . $nameBrand . '"'; } ?> />
</div>
<div class="col-sm-6">
<label class="form-label" for="multiStepsBusinessemail">Business email</label>
<input type="email" name="multiStepsBusinessemail" id="multiStepsBusinessemail" class="form-control" placeholder="john.doe@email.com" aria-label="john.doe" <?php if (!empty($businessEmail)) { echo 'value="' . $businessEmail . '"'; } ?>/>
</div>
<div class="col-sm-6">
<label class="form-label" for="multiStepsDesignation">Designation</label>
<div class="input-group input-group-merge">
<input type="text" id="multiStepsDesignation" name="multiStepsDesignation" class="form-control" placeholder="e.g CEO, Founder.." aria-describedby=multiStepsDesignation2" <?php if (!empty($designationBrand)) { echo 'value="Founder"'; } ?> />
</div>
</div>
<div class="col-sm-6">
<label class="form-label" for="multiStepsBusinessphone">Full Names</label>
<div class="input-group input-group-merge">
<input type="text" id="multiStepsFullNames" name="multiStepsFullNames" class="form-control" placeholder="Your Name" aria-describedby="multiStepsFullNames2" <?php if (!empty($fullNameBrand)) { echo 'value="' . $fullNameBrand . '"'; } ?> />
</div>
</div>
<div class="col-md-12">
<label class="form-label" for="multiStepsAddress">
Business Address*</label>
<input type="text" name="multiStepsAddress" id="multiStepsAddress" class="form-control" placeholder="Address" aria-label="johndoe" <?php if (!empty($address)) { echo 'value="' . $address . '"'; } ?>/>
</div>
<div class="col-12 d-flex justify-content-between">
<button class="btn btn-label-secondary btn-prev" disabled> <i class="bx bx-left-arrow-alt bx-sm ms-sm-n2 me-sm-2"></i>
<span class="align-middle d-sm-inline-block d-none">Previous</span>
</button>
<button class="btn btn-primary btn-next"> <span class="align-middle d-sm-inline-block d-none me-sm-2 me-0">Next</span> <i class="bx bx-right-arrow-alt bx-sm me-sm-n2"></i></button>
</div>
</div>
</div>
<!-- Personal Info -->
<div id="personalInfoValidation" class="content">
<div class="content-header mb-6">
<h4 class="mb-0">Setting up your Brand</h4>
<p class="mb-0">Fill in your profile details to personalize your experience.</p>
</div>
<div class="row g-6">
<div class="col-sm-6">
<label class="form-label" for="multiStepsProfileType">Creator Profile Type</label>
<select name="multiStepsProfileType" id="multiStepsProfileType" class="select2 form-select" data-allow-clear="true">
<option data-value="Athlete" value="2" <?php if ($typeBrand == 2) echo 'selected'; ?>>Athlete</option>
<option data-value="Author" value="3" <?php if ($typeBrand == 3) echo 'selected'; ?>>Author</option>
<option data-value="Actor" value="4" <?php if ($typeBrand == 4) echo 'selected'; ?>>Actor</option>
<option data-value="Architectural Designer" value="5" <?php if ($typeBrand == 5) echo 'selected'; ?>>Architectural Designer</option>
<option data-value="Blogger" value="6" <?php if ($typeBrand == 6) echo 'selected'; ?>>Blogger</option>
<option data-value="Musician/Band" value="7" <?php if ($typeBrand == 7) echo 'selected'; ?>>Musician/Band</option>
<option data-value="Comedian" value="8" <?php if ($typeBrand == 8) echo 'selected'; ?>>Comedian</option>
<option data-value="Coach" value="9" <?php if ($typeBrand == 9) echo 'selected'; ?>>Coach</option>
<option data-value="Chef" value="11" <?php if ($typeBrand == 11) echo 'selected'; ?>>Chef</option>
<option data-value="Movie Character" value="12" <?php if ($typeBrand == 12) echo 'selected'; ?>>Movie Character</option>
<option data-value="Video Creator" value="13" <?php if ($typeBrand == 13) echo 'selected'; ?>>Video Creator</option>
<option data-value="Gaming Video Creator" value="14" <?php if ($typeBrand == 14) echo 'selected'; ?>>Gaming Video Creator</option>
<option data-value="Digital Creator" value="16" <?php if ($typeBrand == 16) echo 'selected'; ?>>Digital Creator</option>
<option data-value="Dancer" value="17" <?php if ($typeBrand == 17) echo 'selected'; ?>>Dancer</option>
<option data-value="Designer" value="19" <?php if ($typeBrand == 19) echo 'selected'; ?>>Designer</option>
<option data-value="Interior Design Studio" value="20" <?php if ($typeBrand == 20) echo 'selected'; ?>>Interior Design Studio</option>
<option data-value="Graphic Designer" value="21" <?php if ($typeBrand == 21) echo 'selected'; ?>>Graphic Designer</option>
<option data-value="Web Designer" value="22" <?php if ($typeBrand == 22) echo 'selected'; ?>>Web Designer</option>
<option data-value="Film Director" value="24" <?php if ($typeBrand == 24) echo 'selected'; ?>>Film Director</option>
<option data-value="Fashion Designer" value="25" <?php if ($typeBrand == 25) echo 'selected'; ?>>Fashion Designer</option>
<option data-value="Entrepreneur" value="26" <?php if ($typeBrand == 26) echo 'selected'; ?>>Entrepreneur</option>
<option data-value="Editor" value="27" <?php if ($typeBrand == 27) echo 'selected'; ?>>Editor</option>
<option data-value="Fashion Model" value="28" <?php if ($typeBrand == 28) echo 'selected'; ?>>Fashion Model</option>
<option data-value="Fitness Model" value="29" <?php if ($typeBrand == 29) echo 'selected'; ?>>Fitness Model</option>
<option data-value="Fitness Trainer" value="30" <?php if ($typeBrand == 30) echo 'selected'; ?>>Fitness Trainer</option>
<option data-value="Public Figure" value="31" <?php if ($typeBrand == 31) echo 'selected'; ?>>Public Figure</option>
<option data-value="Gamer" value="32" <?php if ($typeBrand == 32) echo 'selected'; ?>>Gamer</option>
<option data-value="Government Official" value="33" <?php if ($typeBrand == 33) echo 'selected'; ?>>Government Official</option>
<option data-value="Clothing Store" value="36" <?php if ($typeBrand == 36) echo 'selected'; ?>>Clothing Store</option>
<option data-value="TV Channel" value="37" <?php if ($typeBrand == 37) echo 'selected'; ?>>TV Channel</option>
<option data-value="E-Commerce Website" value="38" <?php if ($typeBrand == 38) echo 'selected'; ?>>E-Commerce Website</option>
<option data-value="In-Home Service" value="39" <?php if ($typeBrand == 39) echo 'selected'; ?>>In-Home Service</option>
<option data-value="Journalist" value="41" <?php if ($typeBrand == 41) echo 'selected'; ?>>Journalist</option>
<option data-value="DJ" value="42" <?php if ($typeBrand == 42) echo 'selected'; ?>>DJ</option>
<option data-value="Lawyer & Law Firm" value="46" <?php if ($typeBrand == 46) echo 'selected'; ?>>Lawyer & Law Firm</option>
<option data-value="Medical Lab" value="47" <?php if ($typeBrand == 47) echo 'selected'; ?>>Medical Lab</option>
<option data-value="Musician" value="48" <?php if ($typeBrand == 48) echo 'selected'; ?>>Musician</option>
<option data-value="Motivational Speaker" value="49" <?php if ($typeBrand == 49) echo 'selected'; ?>>Motivational Speaker</option>
<option data-value="News Personality" value="50" <?php if ($typeBrand == 50) echo 'selected'; ?>>News Personality</option>
<option data-value="Photographer" value="51" <?php if ($typeBrand == 51) echo 'selected'; ?>>Photographer</option>
<option data-value="Politician" value="52" <?php if ($typeBrand == 52) echo 'selected'; ?>>Politician</option>
<option data-value="Producer" value="53" <?php if ($typeBrand == 53) echo 'selected'; ?>>Producer</option>
<option data-value="Just For Fun" value="55" <?php if ($typeBrand == 55) echo 'selected'; ?>>Just For Fun</option>
<option data-value="Art" value="56" <?php if ($typeBrand == 56) echo 'selected'; ?>>Art</option>
<option data-value="Bar" value="57" <?php if ($typeBrand == 57) echo 'selected'; ?>>Bar</option>
<option data-value="Car Dealership" value="58" <?php if ($typeBrand == 58) echo 'selected'; ?>>Car Dealership</option>
<option data-value="Car Rental" value="59" <?php if ($typeBrand == 59) echo 'selected'; ?>>Car Rental</option>
<option data-value="Performance Art Theater" value="60" <?php if ($typeBrand == 60) echo 'selected'; ?>>Performance Art Theater</option>
<option data-value="Scientist" value="61" <?php if ($typeBrand == 61) echo 'selected'; ?>>Scientist</option>
<option data-value="Concert Tour" value="62" <?php if ($typeBrand == 62) echo 'selected'; ?>>Concert Tour</option>
<option data-value="Bus Line" value="63" <?php if ($typeBrand == 63) echo 'selected'; ?>>Bus Line</option>
<option data-value="Writer" value="64" <?php if ($typeBrand == 64) echo 'selected'; ?>>Writer</option>
<option data-value="Tax Preparation Service" value="65" <?php if ($typeBrand == 65) echo 'selected'; ?>>Tax Preparation Service</option>
<option data-value="Toy Store" value="66" <?php if ($typeBrand == 66) echo 'selected'; ?>>Toy Store</option>
<option data-value="Personal" value="67" <?php if ($typeBrand == 67) echo 'selected'; ?>>Personal</option>
<option data-value="Real Estate" value="68" <?php if ($typeBrand == 68) echo 'selected'; ?>>Real Estate</option>
<option data-value="None of the above" value="57" <?php if ($typeBrand == 57) echo 'selected'; ?>>None of the above</option>
</select>
</div>
<div class="col-sm-6">
<label class="form-label" for="multiStepsCountry">Country</label>
<select name="multiStepsCountry" id="multiStepsCountry" class="select2 form-select" data-allow-clear="true">
<option value="Afghanistan" <?php if ($countryBrand == "Afghanistan") echo 'selected'; ?>>Afghanistan</option>
<option value="Albania" <?php if ($countryBrand == "Albania") echo 'selected'; ?>>Albania</option>
<option value="Algeria" <?php if ($countryBrand == "Algeria") echo 'selected'; ?>>Algeria</option>
<option value="American Samoa" <?php if ($countryBrand == "American Samoa") echo 'selected'; ?>>American Samoa</option>
<option value="Andorra" <?php if ($countryBrand == "Andorra") echo 'selected'; ?>>Andorra</option>
<option value="Angola" <?php if ($countryBrand == "Angola") echo 'selected'; ?>>Angola</option>
<option value="Anguilla" <?php if ($countryBrand == "Anguilla") echo 'selected'; ?>>Anguilla</option>
<option value="Antarctica" <?php if ($countryBrand == "Antarctica") echo 'selected'; ?>>Antarctica</option>
<option value="Antigua and Barbuda" <?php if ($countryBrand == "Antigua and Barbuda") echo 'selected'; ?>>Antigua and Barbuda</option>
<option value="Argentina" <?php if ($countryBrand == "Argentina") echo 'selected'; ?>>Argentina</option>
<option value="Armenia" <?php if ($countryBrand == "Armenia") echo 'selected'; ?>>Armenia</option>
<option value="Aruba" <?php if ($countryBrand == "Aruba") echo 'selected'; ?>>Aruba</option>
<option value="Australia" <?php if ($countryBrand == "Australia") echo 'selected'; ?>>Australia</option>
<option value="Austria" <?php if ($countryBrand == "Austria") echo 'selected'; ?>>Austria</option>
<option value="Azerbaijan" <?php if ($countryBrand == "Azerbaijan") echo 'selected'; ?>>Azerbaijan</option>
<option value="Bahamas" <?php if ($countryBrand == "Bahamas") echo 'selected'; ?>>Bahamas</option>
<option value="Bahrain" <?php if ($countryBrand == "Bahrain") echo 'selected'; ?>>Bahrain</option>
<option value="Bangladesh" <?php if ($countryBrand == "Bangladesh") echo 'selected'; ?>>Bangladesh</option>
<option value="Barbados" <?php if ($countryBrand == "Barbados") echo 'selected'; ?>>Barbados</option>
<option value="Belarus" <?php if ($countryBrand == "Belarus") echo 'selected'; ?>>Belarus</option>
<option value="Belgium" <?php if ($countryBrand == "Belgium") echo 'selected'; ?>>Belgium</option>
<option value="Belize" <?php if ($countryBrand == "Belize") echo 'selected'; ?>>Belize</option>
<option value="Benin" <?php if ($countryBrand == "Benin") echo 'selected'; ?>>Benin</option>
<option value="Bermuda" <?php if ($countryBrand == "Bermuda") echo 'selected'; ?>>Bermuda</option>
<option value="Bhutan" <?php if ($countryBrand == "Bhutan") echo 'selected'; ?>>Bhutan</option>
<option value="Bolivia" <?php if ($countryBrand == "Bolivia") echo 'selected'; ?>>Bolivia</option>
<option value="Bosnia and Herzegovina" <?php if ($countryBrand == "Bosnia and Herzegovina") echo 'selected'; ?>>Bosnia and Herzegovina</option>
<option value="Botswana" <?php if ($countryBrand == "Botswana") echo 'selected'; ?>>Botswana</option>
<option value="Bouvet Island" <?php if ($countryBrand == "Bouvet Island") echo 'selected'; ?>>Bouvet Island</option>
<option value="Brazil" <?php if ($countryBrand == "Brazil") echo 'selected'; ?>>Brazil</option>
<option value="British Indian Ocean Territory" <?php if ($countryBrand == "British Indian Ocean Territory") echo 'selected'; ?>>British Indian Ocean Territory</option>
<option value="Brunei Darussalam" <?php if ($countryBrand == "Brunei Darussalam") echo 'selected'; ?>>Brunei Darussalam</option>
<option value="Bulgaria" <?php if ($countryBrand == "Bulgaria") echo 'selected'; ?>>Bulgaria</option>
<option value="Burkina Faso" <?php if ($countryBrand == "Burkina Faso") echo 'selected'; ?>>Burkina Faso</option>
<option value="Burundi" <?php if ($countryBrand == "Burundi") echo 'selected'; ?>>Burundi</option>
<option value="Cambodia" <?php if ($countryBrand == "Cambodia") echo 'selected'; ?>>Cambodia</option>
<option value="Cameroon" <?php if ($countryBrand == "Cameroon") echo 'selected'; ?>>Cameroon</option>
<option value="Canada" <?php if ($countryBrand == "Canada") echo 'selected'; ?>>Canada</option>
<option value="Cape Verde" <?php if ($countryBrand == "Cape Verde") echo 'selected'; ?>>Cape Verde</option>
<option value="Cayman Islands" <?php if ($countryBrand == "Cayman Islands") echo 'selected'; ?>>Cayman Islands</option>
<option value="Central African Republic" <?php if ($countryBrand == "Central African Republic") echo 'selected'; ?>>Central African Republic</option>
<option value="Chad" <?php if ($countryBrand == "Chad") echo 'selected'; ?>>Chad</option>
<option value="Chile" <?php if ($countryBrand == "Chile") echo 'selected'; ?>>Chile</option>
<option value="China" <?php if ($countryBrand == "China") echo 'selected'; ?>>China</option>
<option value="Christmas Island" <?php if ($countryBrand == "Christmas Island") echo 'selected'; ?>>Christmas Island</option>
<option value="Cocos (Keeling) Islands" <?php if ($countryBrand == "Cocos (Keeling) Islands") echo 'selected'; ?>>Cocos (Keeling) Islands</option>
<option value="Colombia" <?php if ($countryBrand == "Colombia") echo 'selected'; ?>>Colombia</option>
<option value="Comoros" <?php if ($countryBrand == "Comoros") echo 'selected'; ?>>Comoros</option>
<option value="Congo" <?php if ($countryBrand == "Congo") echo 'selected'; ?>>Congo</option>
<option value="Congo, the Democratic Republic of the" <?php if ($countryBrand == "Congo, the Democratic Republic of the") echo 'selected'; ?>>Congo, the Democratic Republic of the</option>
<option value="Cook Islands" <?php if ($countryBrand == "Cook Islands") echo 'selected'; ?>>Cook Islands</option>
<option value="Costa Rica" <?php if ($countryBrand == "Costa Rica") echo 'selected'; ?>>Costa Rica</option>
<option value="Cote d'Ivoire" <?php if ($countryBrand == "Cote d'Ivoire") echo 'selected'; ?>>Cote d'Ivoire</option>
<option value="Croatia" <?php if ($countryBrand == "Croatia") echo 'selected'; ?>>Croatia</option>
<option value="Cuba" <?php if ($countryBrand == "Cuba") echo 'selected'; ?>>Cuba</option>
<option value="Cyprus" <?php if ($countryBrand == "Cyprus") echo 'selected'; ?>>Cyprus</option>
<option value="Czech Republic" <?php if ($countryBrand == "Czech Republic") echo 'selected'; ?>>Czech Republic</option>
<option value="Denmark" <?php if ($countryBrand == "Denmark") echo 'selected'; ?>>Denmark</option>
<option value="Djibouti" <?php if ($countryBrand == "Djibouti") echo 'selected'; ?>>Djibouti</option>
<option value="Dominica" <?php if ($countryBrand == "Dominica") echo 'selected'; ?>>Dominica</option>
<option value="Dominican Republic" <?php if ($countryBrand == "Dominican Republic") echo 'selected'; ?>>Dominican Republic</option>
<option value="Ecuador" <?php if ($countryBrand == "Ecuador") echo 'selected'; ?>>Ecuador</option>
<option value="Egypt" <?php if ($countryBrand == "Egypt") echo 'selected'; ?>>Egypt</option>
<option value="El Salvador" <?php if ($countryBrand == "El Salvador") echo 'selected'; ?>>El Salvador</option>
<option value="Equatorial Guinea" <?php if ($countryBrand == "Equatorial Guinea") echo 'selected'; ?>>Equatorial Guinea</option>
<option value="Eritrea" <?php if ($countryBrand == "Eritrea") echo 'selected'; ?>>Eritrea</option>
<option value="Estonia" <?php if ($countryBrand == "Estonia") echo 'selected'; ?>>Estonia</option>
<option value="Ethiopia" <?php if ($countryBrand == "Ethiopia") echo 'selected'; ?>>Ethiopia</option>
<option value="Falkland Islands (Malvinas)" <?php if ($countryBrand == "Falkland Islands (Malvinas)") echo 'selected'; ?>>Falkland Islands (Malvinas)</option>
<option value="Faroe Islands" <?php if ($countryBrand == "Faroe Islands") echo 'selected'; ?>>Faroe Islands</option>
<option value="Fiji" <?php if ($countryBrand == "Fiji") echo 'selected'; ?>>Fiji</option>
<option value="Finland" <?php if ($countryBrand == "Finland") echo 'selected'; ?>>Finland</option>
<option value="France" <?php if ($countryBrand == "France") echo 'selected'; ?>>France</option>
<option value="French Guiana" <?php if ($countryBrand == "French Guiana") echo 'selected'; ?>>French Guiana</option>
<option value="French Polynesia" <?php if ($countryBrand == "French Polynesia") echo 'selected'; ?>>French Polynesia</option>
<option value="French Southern Territories" <?php if ($countryBrand == "French Southern Territories") echo 'selected'; ?>>French Southern Territories</option>
<option value="Gabon" <?php if ($countryBrand == "Gabon") echo 'selected'; ?>>Gabon</option>
<option value="Gambia" <?php if ($countryBrand == "Gambia") echo 'selected'; ?>>Gambia</option>
<option value="Georgia" <?php if ($countryBrand == "Georgia") echo 'selected'; ?>>Georgia</option>
<option value="Germany" <?php if ($countryBrand == "Germany") echo 'selected'; ?>>Germany</option>
<option value="Ghana" <?php if ($countryBrand == "Ghana") echo 'selected'; ?>>Ghana</option>
<option value="Gibraltar" <?php if ($countryBrand == "Gibraltar") echo 'selected'; ?>>Gibraltar</option>
<option value="Greece" <?php if ($countryBrand == "Greece") echo 'selected'; ?>>Greece</option>
<option value="Greenland" <?php if ($countryBrand == "Greenland") echo 'selected'; ?>>Greenland</option>
<option value="Grenada" <?php if ($countryBrand == "Grenada") echo 'selected'; ?>>Grenada</option>
<option value="Guadeloupe" <?php if ($countryBrand == "Guadeloupe") echo 'selected'; ?>>Guadeloupe</option>
<option value="Guam" <?php if ($countryBrand == "Guam") echo 'selected'; ?>>Guam</option>
<option value="Guatemala" <?php if ($countryBrand == "Guatemala") echo 'selected'; ?>>Guatemala</option>
<option value="Guinea" <?php if ($countryBrand == "Guinea") echo 'selected'; ?>>Guinea</option>
<option value="Guinea-Bissau" <?php if ($countryBrand == "Guinea-Bissau") echo 'selected'; ?>>Guinea-Bissau</option>
<option value="Guyana" <?php if ($countryBrand == "Guyana") echo 'selected'; ?>>Guyana</option>
<option value="Haiti" <?php if ($countryBrand == "Haiti") echo 'selected'; ?>>Haiti</option>
<option value="Heard Island and McDonald Islands" <?php if ($countryBrand == "Heard Island and McDonald Islands") echo 'selected'; ?>>Heard Island and McDonald Islands</option>
<option value="Holy See (Vatican City State)" <?php if ($countryBrand == "Holy See (Vatican City State)") echo 'selected'; ?>>Holy See (Vatican City State)</option>
<option value="Honduras" <?php if ($countryBrand == "Honduras") echo 'selected'; ?>>Honduras</option>
<option value="Hong Kong" <?php if ($countryBrand == "Hong Kong") echo 'selected'; ?>>Hong Kong</option>
<option value="Hungary" <?php if ($countryBrand == "Hungary") echo 'selected'; ?>>Hungary</option>
<option value="Iceland" <?php if ($countryBrand == "Iceland") echo 'selected'; ?>>Iceland</option>
<option value="India" <?php if ($countryBrand == "India") echo 'selected'; ?>>India</option>
<option value="Indonesia" <?php if ($countryBrand == "Indonesia") echo 'selected'; ?>>Indonesia</option>
<option value="Iran, Islamic Republic of" <?php if ($countryBrand == "Iran, Islamic Republic of") echo 'selected'; ?>>Iran, Islamic Republic of</option>
<option value="Iraq" <?php if ($countryBrand == "Iraq") echo 'selected'; ?>>Iraq</option>
<option value="Ireland" <?php if ($countryBrand == "Ireland") echo 'selected'; ?>>Ireland</option>
<option value="Israel" <?php if ($countryBrand == "Israel") echo 'selected'; ?>>Israel</option>
<option value="Italy" <?php if ($countryBrand == "Italy") echo 'selected'; ?>>Italy</option>
<option value="Jamaica" <?php if ($countryBrand == "Jamaica") echo 'selected'; ?>>Jamaica</option>
<option value="Japan" <?php if ($countryBrand == "Japan") echo 'selected'; ?>>Japan</option>
<option value="Jordan" <?php if ($countryBrand == "Jordan") echo 'selected'; ?>>Jordan</option>
<option value="Kazakhstan" <?php if ($countryBrand == "Kazakhstan") echo 'selected'; ?>>Kazakhstan</option>
<option value="Kenya" <?php if ($countryBrand == "Kenya") echo 'selected'; ?>>Kenya</option>
<option value="Kiribati" <?php if ($countryBrand == "Kiribati") echo 'selected'; ?>>Kiribati</option>
<option value="Korea, Democratic People's Republic of" <?php if ($countryBrand == "Korea, Democratic People's Republic of") echo 'selected'; ?>>Korea, Democratic People's Republic of</option>
<option value="Korea, Republic of" <?php if ($countryBrand == "Korea, Republic of") echo 'selected'; ?>>Korea, Republic of</option>
<option value="Kuwait" <?php if ($countryBrand == "Kuwait") echo 'selected'; ?>>Kuwait</option>
<option value="Kyrgyzstan" <?php if ($countryBrand == "Kyrgyzstan") echo 'selected'; ?>>Kyrgyzstan</option>
<option value="Lao People's Democratic Republic" <?php if ($countryBrand == "Lao People's Democratic Republic") echo 'selected'; ?>>Lao People's Democratic Republic</option>
<option value="Latvia" <?php if ($countryBrand == "Latvia") echo 'selected'; ?>>Latvia</option>
<option value="Lebanon" <?php if ($countryBrand == "Lebanon") echo 'selected'; ?>>Lebanon</option>
<option value="Lesotho" <?php if ($countryBrand == "Lesotho") echo 'selected'; ?>>Lesotho</option>
<option value="Liberia" <?php if ($countryBrand == "Liberia") echo 'selected'; ?>>Liberia</option>
<option value="Libya" <?php if ($countryBrand == "Libya") echo 'selected'; ?>>Libya</option>
<option value="Liechtenstein" <?php if ($countryBrand == "Liechtenstein") echo 'selected'; ?>>Liechtenstein</option>
<option value="Lithuania" <?php if ($countryBrand == "Lithuania") echo 'selected'; ?>>Lithuania</option>
<option value="Luxembourg" <?php if ($countryBrand == "Luxembourg") echo 'selected'; ?>>Luxembourg</option>
<option value="Macao" <?php if ($countryBrand == "Macao") echo 'selected'; ?>>Macao</option>
<option value="Macedonia, the Former Yugoslav Republic of" <?php if ($countryBrand == "Macedonia, the Former Yugoslav Republic of") echo 'selected'; ?>>Macedonia, the Former Yugoslav Republic of</option>
<option value="Madagascar" <?php if ($countryBrand == "Madagascar") echo 'selected'; ?>>Madagascar</option>
<option value="Malawi" <?php if ($countryBrand == "Malawi") echo 'selected'; ?>>Malawi</option>
<option value="Malaysia" <?php if ($countryBrand == "Malaysia") echo 'selected'; ?>>Malaysia</option>
<option value="Maldives" <?php if ($countryBrand == "Maldives") echo 'selected'; ?>>Maldives</option>
<option value="Mali" <?php if ($countryBrand == "Mali") echo 'selected'; ?>>Mali</option>
<option value="Malta" <?php if ($countryBrand == "Malta") echo 'selected'; ?>>Malta</option>
<option value="Marshall Islands" <?php if ($countryBrand == "Marshall Islands") echo 'selected'; ?>>Marshall Islands</option>
<option value="Martinique" <?php if ($countryBrand == "Martinique") echo 'selected'; ?>>Martinique</option>
<option value="Mauritania" <?php if ($countryBrand == "Mauritania") echo 'selected'; ?>>Mauritania</option>
<option value="Mauritius" <?php if ($countryBrand == "Mauritius") echo 'selected'; ?>>Mauritius</option>
<option value="Mayotte" <?php if ($countryBrand == "Mayotte") echo 'selected'; ?>>Mayotte</option>
<option value="Mexico" <?php if ($countryBrand == "Mexico") echo 'selected'; ?>>Mexico</option>
<option value="Micronesia, Federated States of" <?php if ($countryBrand == "Micronesia, Federated States of") echo 'selected'; ?>>Micronesia, Federated States of</option>
<option value="Moldova, Republic of" <?php if ($countryBrand == "Moldova, Republic of") echo 'selected'; ?>>Moldova, Republic of</option>
<option value="Monaco" <?php if ($countryBrand == "Monaco") echo 'selected'; ?>>Monaco</option>
<option value="Mongolia" <?php if ($countryBrand == "Mongolia") echo 'selected'; ?>>Mongolia</option>
<option value="Montenegro" <?php if ($countryBrand == "Montenegro") echo 'selected'; ?>>Montenegro</option>
<option value="Montserrat" <?php if ($countryBrand == "Montserrat") echo 'selected'; ?>>Montserrat</option>
<option value="Morocco" <?php if ($countryBrand == "Morocco") echo 'selected'; ?>>Morocco</option>
<option value="Mozambique" <?php if ($countryBrand == "Mozambique") echo 'selected'; ?>>Mozambique</option>
<option value="Myanmar" <?php if ($countryBrand == "Myanmar") echo 'selected'; ?>>Myanmar</option>
<option value="Namibia" <?php if ($countryBrand == "Namibia") echo 'selected'; ?>>Namibia</option>
<option value="Nauru" <?php if ($countryBrand == "Nauru") echo 'selected'; ?>>Nauru</option>
<option value="Nepal" <?php if ($countryBrand == "Nepal") echo 'selected'; ?>>Nepal</option>
<option value="Netherlands" <?php if ($countryBrand == "Netherlands") echo 'selected'; ?>>Netherlands</option>
<option value="New Caledonia" <?php if ($countryBrand == "New Caledonia") echo 'selected'; ?>>New Caledonia</option>
<option value="New Zealand" <?php if ($countryBrand == "New Zealand") echo 'selected'; ?>>New Zealand</option>
<option value="Nicaragua" <?php if ($countryBrand == "Nicaragua") echo 'selected'; ?>>Nicaragua</option>
<option value="Niger" <?php if ($countryBrand == "Niger") echo 'selected'; ?>>Niger</option>
<option value="Nigeria" <?php if ($countryBrand == "Nigeria") echo 'selected'; ?>>Nigeria</option>
<option value="Niue" <?php if ($countryBrand == "Niue") echo 'selected'; ?>>Niue</option>
<option value="Norfolk Island" <?php if ($countryBrand == "Norfolk Island") echo 'selected'; ?>>Norfolk Island</option>
<option value="Northern Mariana Islands" <?php if ($countryBrand == "Northern Mariana Islands") echo 'selected'; ?>>Northern Mariana Islands</option>
<option value="Norway" <?php if ($countryBrand == "Norway") echo 'selected'; ?>>Norway</option>
<option value="Oman" <?php if ($countryBrand == "Oman") echo 'selected'; ?>>Oman</option>
<option value="Pakistan" <?php if ($countryBrand == "Pakistan") echo 'selected'; ?>>Pakistan</option>
<option value="Palau" <?php if ($countryBrand == "Palau") echo 'selected'; ?>>Palau</option>
<option value="Palestinian Territory, Occupied" <?php if ($countryBrand == "Palestinian Territory, Occupied") echo 'selected'; ?>>Palestinian Territory, Occupied</option>
<option value="Panama" <?php if ($countryBrand == "Panama") echo 'selected'; ?>>Panama</option>
<option value="Papua New Guinea" <?php if ($countryBrand == "Papua New Guinea") echo 'selected'; ?>>Papua New Guinea</option>
<option value="Paraguay" <?php if ($countryBrand == "Paraguay") echo 'selected'; ?>>Paraguay</option>
<option value="Peru" <?php if ($countryBrand == "Peru") echo 'selected'; ?>>Peru</option>
<option value="Philippines" <?php if ($countryBrand == "Philippines") echo 'selected'; ?>>Philippines</option>
<option value="Pitcairn" <?php if ($countryBrand == "Pitcairn") echo 'selected'; ?>>Pitcairn</option>
<option value="Poland" <?php if ($countryBrand == "Poland") echo 'selected'; ?>>Poland</option>
<option value="Portugal" <?php if ($countryBrand == "Portugal") echo 'selected'; ?>>Portugal</option>
<option value="Puerto Rico" <?php if ($countryBrand == "Puerto Rico") echo 'selected'; ?>>Puerto Rico</option>
<option value="Qatar" <?php if ($countryBrand == "Qatar") echo 'selected'; ?>>Qatar</option>
<option value="Reunion" <?php if ($countryBrand == "Reunion") echo 'selected'; ?>>Reunion</option>
<option value="Romania" <?php if ($countryBrand == "Romania") echo 'selected'; ?>>Romania</option>
<option value="Russian Federation" <?php if ($countryBrand == "Russian Federation") echo 'selected'; ?>>Russian Federation</option>
<option value="Rwanda" <?php if ($countryBrand == "Rwanda") echo 'selected'; ?>>Rwanda</option>
<option value="Saint Barthelemy" <?php if ($countryBrand == "Saint Barthelemy") echo 'selected'; ?>>Saint Barthelemy</option>
<option value="Saint Helena, Ascension and Tristan da Cunha" <?php if ($countryBrand == "Saint Helena, Ascension and Tristan da Cunha") echo 'selected'; ?>>Saint Helena, Ascension and Tristan da Cunha</option>
<option value="Saint Kitts and Nevis" <?php if ($countryBrand == "Saint Kitts and Nevis") echo 'selected'; ?>>Saint Kitts and Nevis</option>
<option value="Saint Lucia" <?php if ($countryBrand == "Saint Lucia") echo 'selected'; ?>>Saint Lucia</option>
<option value="Saint Martin (French part)" <?php if ($countryBrand == "Saint Martin (French part)") echo 'selected'; ?>>Saint Martin (French part)</option>
<option value="Saint Pierre and Miquelon" <?php if ($countryBrand == "Saint Pierre and Miquelon") echo 'selected'; ?>>Saint Pierre and Miquelon</option>
<option value="Saint Vincent and the Grenadines" <?php if ($countryBrand == "Saint Vincent and the Grenadines") echo 'selected'; ?>>Saint Vincent and the Grenadines</option>
<option value="Samoa" <?php if ($countryBrand == "Samoa") echo 'selected'; ?>>Samoa</option>
<option value="San Marino" <?php if ($countryBrand == "San Marino") echo 'selected'; ?>>San Marino</option>
<option value="Sao Tome and Principe" <?php if ($countryBrand == "Sao Tome and Principe") echo 'selected'; ?>>Sao Tome and Principe</option>
<option value="Saudi Arabia" <?php if ($countryBrand == "Saudi Arabia") echo 'selected'; ?>>Saudi Arabia</option>
<option value="Senegal" <?php if ($countryBrand == "Senegal") echo 'selected'; ?>>Senegal</option>
<option value="Serbia" <?php if ($countryBrand == "Serbia") echo 'selected'; ?>>Serbia</option>
<option value="Seychelles" <?php if ($countryBrand == "Seychelles") echo 'selected'; ?>>Seychelles</option>
<option value="Sierra Leone" <?php if ($countryBrand == "Sierra Leone") echo 'selected'; ?>>Sierra Leone</option>
<option value="Singapore" <?php if ($countryBrand == "Singapore") echo 'selected'; ?>>Singapore</option>
<option value="Sint Maarten (Dutch part)" <?php if ($countryBrand == "Sint Maarten (Dutch part)") echo 'selected'; ?>>Sint Maarten (Dutch part)</option>
<option value="Slovakia" <?php if ($countryBrand == "Slovakia") echo 'selected'; ?>>Slovakia</option>
<option value="Slovenia" <?php if ($countryBrand == "Slovenia") echo 'selected'; ?>>Slovenia</option>
<option value="Solomon Islands" <?php if ($countryBrand == "Solomon Islands") echo 'selected'; ?>>Solomon Islands</option>
<option value="Somalia" <?php if ($countryBrand == "Somalia") echo 'selected'; ?>>Somalia</option>
<option value="South Africa" <?php if ($countryBrand == "South Africa") echo 'selected'; ?>>South Africa</option>
<option value="South Georgia and the South Sandwich Islands" <?php if ($countryBrand == "South Georgia and the South Sandwich Islands") echo 'selected'; ?>>South Georgia and the South Sandwich Islands</option>
<option value="South Sudan" <?php if ($countryBrand == "South Sudan") echo 'selected'; ?>>South Sudan</option>
<option value="Spain" <?php if ($countryBrand == "Spain") echo 'selected'; ?>>Spain</option>
<option value="Sri Lanka" <?php if ($countryBrand == "Sri Lanka") echo 'selected'; ?>>Sri Lanka</option>
<option value="Sudan" <?php if ($countryBrand == "Sudan") echo 'selected'; ?>>Sudan</option>
<option value="Suriname" <?php if ($countryBrand == "Suriname") echo 'selected'; ?>>Suriname</option>
<option value="Svalbard and Jan Mayen" <?php if ($countryBrand == "Svalbard and Jan Mayen") echo 'selected'; ?>>Svalbard and Jan Mayen</option>
<option value="Swaziland" <?php if ($countryBrand == "Swaziland") echo 'selected'; ?>>Swaziland</option>
<option value="Sweden" <?php if ($countryBrand == "Sweden") echo 'selected'; ?>>Sweden</option>
<option value="Switzerland" <?php if ($countryBrand == "Switzerland") echo 'selected'; ?>>Switzerland</option>
<option value="Syrian Arab Republic" <?php if ($countryBrand == "Syrian Arab Republic") echo 'selected'; ?>>Syrian Arab Republic</option>
<option value="Taiwan, Province of China" <?php if ($countryBrand == "Taiwan, Province of China") echo 'selected'; ?>>Taiwan, Province of China</option>
<option value="Tajikistan" <?php if ($countryBrand == "Tajikistan") echo 'selected'; ?>>Tajikistan</option>
<option value="Tanzania, United Republic of" <?php if ($countryBrand == "Tanzania, United Republic of") echo 'selected'; ?>>Tanzania, United Republic of</option>
<option value="Thailand" <?php if ($countryBrand == "Thailand") echo 'selected'; ?>>Thailand</option>
<option value="Timor-Leste" <?php if ($countryBrand == "Timor-Leste") echo 'selected'; ?>>Timor-Leste</option>
<option value="Togo" <?php if ($countryBrand == "Togo") echo 'selected'; ?>>Togo</option>
<option value="Tokelau" <?php if ($countryBrand == "Tokelau") echo 'selected'; ?>>Tokelau</option>
<option value="Tonga" <?php if ($countryBrand == "Tonga") echo 'selected'; ?>>Tonga</option>
<option value="Trinidad and Tobago" <?php if ($countryBrand == "Trinidad and Tobago") echo 'selected'; ?>>Trinidad and Tobago</option>
<option value="Tunisia" <?php if ($countryBrand == "Tunisia") echo 'selected'; ?>>Tunisia</option>
<option value="Turkey" <?php if ($countryBrand == "Turkey") echo 'selected'; ?>>Turkey</option>
<option value="Turkmenistan" <?php if ($countryBrand == "Turkmenistan") echo 'selected'; ?>>Turkmenistan</option>
<option value="Turks and Caicos Islands" <?php if ($countryBrand == "Turks and Caicos Islands") echo 'selected'; ?>>Turks and Caicos Islands</option>
<option value="Tuvalu" <?php if ($countryBrand == "Tuvalu") echo 'selected'; ?>>Tuvalu</option>
<option value="Uganda" <?php if ($countryBrand == "Uganda") echo 'selected'; ?>>Uganda</option>
<option value="Ukraine" <?php if ($countryBrand == "Ukraine") echo 'selected'; ?>>Ukraine</option>
<option value="United Arab Emirates" <?php if ($countryBrand == "United Arab Emirates") echo 'selected'; ?>>United Arab Emirates</option>
<option value="United Kingdom" <?php if ($countryBrand == "United Kingdom") echo 'selected'; ?>>United Kingdom</option>
<option value="United States" <?php if ($countryBrand == "United States") echo 'selected'; ?>>United States</option>
<option value="Uruguay" <?php if ($countryBrand == "Uruguay") echo 'selected'; ?>>Uruguay</option>
<option value="Uzbekistan" <?php if ($countryBrand == "Uzbekistan") echo 'selected'; ?>>Uzbekistan</option>
<option value="Vanuatu" <?php if ($countryBrand == "Vanuatu") echo 'selected'; ?>>Vanuatu</option>
<option value="Venezuela, Bolivarian Republic of" <?php if ($countryBrand == "Venezuela, Bolivarian Republic of") echo 'selected'; ?>>Venezuela, Bolivarian Republic of</option>
<option value="Viet Nam" <?php if ($countryBrand == "Viet Nam") echo 'selected'; ?>>Viet Nam</option>
<option value="Western Sahara" <?php if ($countryBrand == "Western Sahara") echo 'selected'; ?>>Western Sahara</option>
<option value="Yemen" <?php if ($countryBrand == "Yemen") echo 'selected'; ?>>Yemen</option>
<option value="Zambia" <?php if ($countryBrand == "Zambia") echo 'selected'; ?>>Zambia</option>
<option value="Zimbabwe" <?php if ($countryBrand == "Zimbabwe") echo 'selected'; ?>>Zimbabwe</option>
</select>
</div>
<div class="col-sm-6">
<label class="form-label" for="multiStepsTagline">What's your Tagline or Slogan?</label>
<input type="text" id="multiStepsTagline" name="multiStepsTagline" class="form-control" placeholder="Jackson" <?php if (!empty($tagline)) { echo 'value="' . $tagline . '"'; } ?>/>
</div>
<div class="col-sm-6">
<label class="form-label" for="multiStepsTypeBrand">What best describes your business? </label>
<select id="multiStepsTypeBrand" name="multiStepsTypeBrand" class="select2 form-select" data-allow-clear="true">
<option value="">Select</option>
<option value="B2B online brand" data-original-index="1" <?php if ($profileType == "B2B online brand") echo 'selected'; ?>>B2B online brand</option>
<option value="Online Store" data-original-index="2" <?php if ($profileType == "Online Store") echo 'selected'; ?>>Online Store</option>
<option value="Personal use (i.e. not a business)" data-original-index="3" <?php if ($profileType == "Personal use (i.e. not a business)") echo 'selected'; ?>>Personal use (i.e. not a business)</option>
<option value="Physical Store" data-original-index="4" <?php if ($profileType == "Physical Store") echo 'selected'; ?>>Physical Store</option>
<option value="SaaS (software as a service)" data-original-index="5" <?php if ($profileType == "SaaS (software as a service)") echo 'selected'; ?>>SaaS (software as a service)</option>
<option value="Agency/marketing consultant" data-original-index="6" <?php if ($profileType == "Agency/marketing consultant") echo 'selected'; ?>>Agency/marketing consultant</option>
<option value="Publisher (e.g. newspaper, magazine, blogger etc)" data-original-index="7" <?php if ($profileType == "Publisher (e.g. newspaper, magazine, blogger etc)") echo 'selected'; ?>>Publisher (e.g. newspaper, magazine, blogger etc)</option>
<option value="Restaurant/Cafe" data-original-index="8" <?php if ($profileType == "Restaurant/Cafe") echo 'selected'; ?>>Restaurant/Cafe</option>
<option value="Freelancer/Solo Entrepreneur" data-original-index="9" <?php if ($profileType == "Freelancer/Solo Entrepreneur") echo 'selected'; ?>>Freelancer/Solo Entrepreneur</option>
<option value="E-commerce Marketplace" data-original-index="10" <?php if ($profileType == "E-commerce Marketplace") echo 'selected'; ?>>E-commerce Marketplace</option>
<option value="Healthcare Practice" data-original-index="11" <?php if ($profileType == "Healthcare Practice") echo 'selected'; ?>>Healthcare Practice</option>
<option value="Financial Services (e.g. Financial Advisor, Insurance Broker)" data-original-index="12" <?php if ($profileType == "Financial Services (e.g. Financial Advisor, Insurance Broker)") echo 'selected'; ?>>Financial Services (e.g. Financial Advisor, Insurance Broker)</option>
<option value="Real Estate Agency" data-original-index="13" <?php if ($profileType == "Real Estate Agency") echo 'selected'; ?>>Real Estate Agency</option>
<option value="Tech Startup" data-original-index="14" <?php if ($profileType == "Tech Startup") echo 'selected'; ?>>Tech Startup</option>
<option value="Manufacturing Company" data-original-index="15" <?php if ($profileType == "Manufacturing Company") echo 'selected'; ?>>Manufacturing Company</option>
<option value="none of the above" data-original-index="16" <?php if ($profileType == "none of the above") echo 'selected'; ?>>none of the above</option>
</select>
</div>
<div class="col-md-12">
<label class="form-label" for="multiStepsTeam">Team</label>
<select name="multiStepsTeam" id="multiStepsTeam" class="select2 form-select" data-allow-clear="true">
<option value="Fewer than 5 employees (including you)" data-original-index="1" <?php if ($team == "Fewer than 5 employees (including you)") echo 'selected'; ?>>Fewer than 5 employees (including you)</option>
<option value="5 to 50 employees" data-original-index="2" <?php if ($team == "5 to 50 employees") echo 'selected'; ?>>5 to 50 employees</option>
<option value="51 to 500 employees" data-original-index="3" <?php if ($team == "51 to 500 employees") echo 'selected'; ?>>51 to 500 employees</option>
<option value="More than 500 employees" data-original-index="4" <?php if ($team == "More than 500 employees") echo 'selected'; ?>>More than 500 employees</option>
<option value="N/A — This question doesn’t apply to me" data-original-index="5" <?php if ($team == "N/A — This question doesn’t apply to me") echo 'selected'; ?>>N/A — This question doesn’t apply to me</option>
<option value="I prefer not to answer" data-original-index="6" <?php if ($team == "I prefer not to answer") echo 'selected'; ?>>I prefer not to answer</option>
</select>
</div>
<!-- <div class="col-md-12">
<label class="form-label" for="multiStepsArea">Landmark</label>
<input type="text" id="multiStepsArea" name="multiStepsArea" class="form-control" placeholder="Area/Landmark" />
</div>-->
<div class="col-12 d-flex justify-content-between">
<button class="btn btn-label-secondary btn-prev"> <i class="bx bx-left-arrow-alt bx-sm ms-sm-n2 me-sm-2"></i>
<span class="align-middle d-sm-inline-block d-none">Previous</span>
</button>
<button class="btn btn-primary btn-next"> <span class="align-middle d-sm-inline-block d-none me-sm-2 me-0">Next</span> <i class="bx bx-right-arrow-alt bx-sm me-sm-n2"></i></button>
</div>
</div>
</div>
<!-- Billing Links -->
<div id="billingLinksValidation" class="content">
<div class="content-header mb-6">
<h4 class="mb-0">Social Media</h4>
<p class="mb-0">
Include Social Media Links in Your Marketing Materials</p>
</div>
<!-- Credit Card Details -->
<div class="row g-6">
<div class="col-sm-6">
<label class="form-label" for="multiStepsBusinessweb">Website</label>
<div class="input-group input-group-merge">
<input type="text" id="multiStepsBusinessweb" name="multiStepsBusinessweb" class="form-control" placeholder="Your Website" aria-describedby="multiStepsBusinessweb2" <?php if (!empty($websiteBrand)) { echo 'value="' . $websiteBrand . '"'; } ?> />
</div>
</div>
<div class="col-sm-6">
<label class="form-label" for="multiStepsBusinessphone">Business phone</label>
<div class="input-group input-group-merge">
<input type="text" id="multiStepsBusinessphone" name="multiStepsBusinessphone" class="form-control" placeholder="Business Phone Number" aria-describedby="multiStepsBusinessphone2" <?php if (!empty($phoneBrand)) { echo 'value="' . $phoneBrand . '"'; } ?> />
</div>
</div>
<div class="col-sm-6">
<label class="form-label" for="twitter-modern">Twitter</label>
<input type="text" id="twitter-modern" name="twitter-modern" class="form-control" placeholder="https://twitter.com/abc" <?php if (!empty($twitter)) { echo 'value="' . $twitter . '"'; } ?>>
</div>
<div class="col-sm-6">
<label class="form-label" for="facebook-modern">Facebook</label>
<input type="text" id="facebook-modern" name="facebook-modern" class="form-control" placeholder="https://facebook.com/abc" <?php if (!empty($facebook)) { echo 'value="' . $facebook . '"'; } ?>>
</div>
<div class="col-sm-6">
<label class="form-label" for="youtube-modern">Instagram</label>
<input type="text" id="youtube-modern" name="youtube-modern" class="form-control" placeholder="https://instagram.com/abc" <?php if (!empty($youtube)) { echo 'value="' . $youtube . '"'; } ?>>
</div>
<div class="col-sm-6">
<label class="form-label" for="linkedin-modern">LinkedIn</label>
<input type="text" id="linkedin-modern" name="linkedin-modern" class="form-control" placeholder="https://linkedin.com/abc" <?php if (!empty($linkedin)) { echo 'value="' . $linkedin . '"'; } ?>>
</div>
<div class="col-12 d-flex justify-content-between">
<button class="btn btn-label-secondary btn-prev"> <i class="bx bx-left-arrow-alt bx-sm ms-sm-n2 me-sm-2"></i>
<span class="align-middle d-sm-inline-block d-none">Previous</span>
</button>
<button type="submit" class="btn btn-success btn-next btn-submit">Submit</button>
</div>
</div>
<!--/ Credit Card Details -->
</div>
</form>
</div>
</div>
</div>
</div>
<!-- / Multi Steps Registration -->
</div>
</div>
<script>
// Check selected custom option
window.Helpers.initCustomOptionCheck();
</script>
<!-- / Content -->
<!-- Core JS -->
<!-- build:js assets/vendor/js/core.js -->
<script src="assets/vendor/libs/jquery/jquery.js"></script>
<script src="assets/vendor/libs/popper/popper.js"></script>
<script src="assets/vendor/js/bootstrap.js"></script>
<script src="assets/vendor/libs/perfect-/perfect-scrollbar.js"></script>
<script src="assets/vendor/libs/hammer/hammer.js"></script>
<script src="assets/vendor/libs/i18n/i18n.js"></script>
<script src="assets/vendor/libs/typeahead-js/typeahead.js"></script>
<script src="assets/vendor/js/menu.js"></script>
<!-- endbuild -->
<!-- Vendors JS -->
<script src="assets/vendor/libs/cleavejs/cleave.js"></script>
<script src="assets/vendor/libs/cleavejs/cleave-phone.js"></script>
<script src="assets/vendor/libs/bs-stepper/bs-stepper.js"></script>
<script src="assets/vendor/libs/select2/select2.js"></script>
<script src="assets/vendor/libs/form-validat/popular.js"></script>
<script src="assets/vendor/libs/form-vali/bootstrap5.js"></script>
<script src="assets/vendor/libs/form-vali/auto-focus.js"></script>
<!-- Main JS -->
<script src="assets/js/main.js"></script>
<!-- Page JS -->
<script src="assets/js/pages-auth-multisteps.js?<?php echo rand(99,22222);?>"></script>
<script src="assets/vendor/libs/sweetaler/sweetalert2.js"></script>
<script src="assets/js/extended-ui-sweetalert2.js"></script>
</body> <!--auth-register-multisteps.html [XR&CO'2014],10:54:56 GMT -->
</html>
<!-- beautify ignore:end -->