Your IP : 3.138.34.93
<?php
session_start(); ob_start(); exit;
include("profile/lib/connect.inc.php");
if(isset($_GET['ref']))
{
$sponsor = $_SESSION['sponsor'] = $_GET['ref'];
if ($covis->validateUser($sponsor) == FALSE) {
$report = 'You have entered an invalid sponsor ID. Please Try Again';
$count = 1;
$_SESSION['signup'] = 0;
} else {
$report = 'Sponsor successfully verified';
$_SESSION['signup'] = 2;
}
header('location: ?');
}
$signup = isset($_SESSION['signup'])?$_SESSION['signup']:0;
if(isset($_GET['reset'])){$_SESSION['signup']=0; header("location: ?");}
if(isset($_SESSION['upline'])){ unset($_SESSION['upline']); }
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="keywords" content="Covis Club Internation. Passionate about financial empowerment" />
<meta name="description" content="Covis Club Internation. Passionate about financial empowerment" />
<meta name="author" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Sign Up</title>
<!-- Favicon -->
<link rel="shortcut icon" href="img/fav.png" />
<!-- Google Font -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Archivo:400,400i,500,500i,600,600i,700,700i&display=swap">
<!-- CSS Global Compulsory (Do not remove)-->
<link rel="stylesheet" href="css/font-awesome/all.min.css" />
<link rel="stylesheet" href="css/flaticon/flaticon.css" />
<link rel="stylesheet" href="css/bootstrap/bootstrap.min.css" />
<!-- Page CSS Implementing Plugins (Remove the plugin CSS here if site does not use that feature)-->
<link rel="stylesheet" href="css/owl-carousel/owl.carousel.min.css" />
<link rel="stylesheet" href="css/animate/animate.min.css"/>
<link rel="stylesheet" href="css/magnific-popup/magnific-popup.css" />
<!-- Template Style -->
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<!--=================================
header -->
<?php include("header.php") ?>
<?php if(isset($report)){$covis->Alert(); } ?>
<section class="space-ptb">
<div class="container">
<div class="row justify-content-lg-around position-relative pt-5">
<div class="col-lg-7 col-md-7 pr-lg-5">
<div class="p-4 p-md-5 bg-white shadow">
<!--<h2 style="color:red">MAINTENANCE IN PROGRESS</h2>-->
<h5>Signup To Join COVIS CLUB INTERNATIONAL</h5>
<form class="mt-4" method="post">
<!-- <div class="form-group mb-3">
<input type="text" class="form-control" id="exampleInputName" placeholder="Name">
</div>
<div class="form-group mb-0">
<button type="submit" class="btn btn-primary">Send Massage<i class="fas fa-arrow-right pl-3"></i></button>
</div>
</form>
</div>
</div>
<div class="contact-bg-logo"><i class="fas fa-comment"></i></div> -->
<?php if($signup==0){ ?>
<div class="form-group mb-3">
<input type="text" class="form-control" placeholder="Sponsor ID" name="sponsor" value="<?php if(isset($_SESSION['sponsor'])){ echo $_SESSION['sponsor']; } ?>" required>
</div>
<div class="px-2 form-group mb-0">
<button type="submit" class="btn btn-primary btn-block text-uppercase" name="VerifySponsor" style="width:100%">Verify Sponsor</button>
</div>
<?php } elseif($signup==2){ ?>
SPONSOR: <b><?php echo $covis->userName2($_SESSION['sponsor']) ?> (<?php echo $_SESSION['sponsor'] ?>)</b>
<span class="pull-right"><a href="?reset=true"> Change Sponsor</a></span>
<br><br>
<div class="form-group">
<input type="text" class="form-control" id="exampleInputUsername" placeholder="Surname" name="firstname" value="<?php if(isset($_SESSION['firstname'])){ echo $_SESSION['firstname']; } ?>" required>
</div>
<div class="form-group">
<input type="text" class="form-control" id="exampleInputUsername" placeholder="Firstname" name="lastname" value="<?php if(isset($_SESSION['firstname'])){ echo $_SESSION['lastname']; } ?>" required>
</div>
<div class="form-group mb-3">
<select class="form-control" name="gender" required>
<option value="" >Select Gender..</option>
<option value="Male">Male</option>
<option value="Female">Female</option>
</select>
</div>
<div class="form-group mb-3">
<input type="text" class="form-control" id="exampleInputResetPassword" placeholder="State" name="state">
</div>
<div class="form-group mb-3">
<input type="text" class="form-control" id="exampleInputResetPassword" placeholder="Country" name="country">
</div>
<div class="form-group">
<input type="text" class="form-control" id="exampleInputUsername" placeholder="Phone Number" name="phone" value="<?php if(isset($_SESSION['firstname'])){ echo $_SESSION['phone']; } ?>" required>
</div>
<div class="form-group">
<input type="email" class="form-control" id="exampleInputEmail" placeholder="Email" name="email" value="<?php if(isset($_SESSION['firstname'])){ echo $_SESSION['email']; } ?>" required>
</div>
<div class="form-group">
<label>please do not include special characters in your username</label>
<input type="text" class="form-control" id="exampleInputUsername" placeholder="Username" name="username" value="<?php if(isset($_SESSION['firstname'])){ echo $_SESSION['username']; } ?>" required>
</div>
<div class="form-group">
<input type="password" class="form-control" id="exampleInputPassword" placeholder="Password" name="password" required>
</div>
<div class="form-group mb-3">
<input type="password" class="form-control" id="exampleInputResetPassword" placeholder="Confirm password" name="password2" required>
</div>
<div class="px-2 form-group mb-0">
<button type="submit" class="btn btn-primary btn-block text-uppercase" name="InitialSignup" style="width:100%">Sign up</button>
</div>
<?php } elseif($signup==3){ ?>
<h5>REGISTRATION PAYMENT</h5>
<br>
<div class="form-group mb-3">
<input type="text" class="form-control" placeholder="Registration PIN" name="epin" value="<?php if(isset($_SESSION['pin'])){ echo $_SESSION['pin']; } ?>" required>
</div>
<div class="px-2 form-group mb-0">
<button type="submit" class="btn btn-primary btn-block text-uppercase" name="payWithPin" style="width:100%">Register with PIN</button>
</div>
<br>
<br>
<p><b style=color:red;>Disclaimer!</b> Your $5 only gives you access into our business club membership.
It does not guarantee earning and award of any kind, it is non-refundable.
The only guarantee to earning and compensation is your involvement in our unique business plan.</p>
<?php } elseif($signup==4){ ?>
<br><br>
<center><h3 class="text-success">Signup Successful</h3></center><br>
<div class="px-2 form-group mb-0">
<button type="submit" class="btn btn-purple btn-block text-uppercase" name="ProceedToLogin" style="width:100%">Proceed to Login</button>
</div>
<?php } ?>
</form>
<div style="border: thick solid #036; padding: 10px; margin-top: 50px; border-radius: 20px;">
FOR PURCHASE OF REGISTRATION E-PINS DIRECTLY FROM COVIS CLUB INTERNATIONAL
KINDLY MAKE PAYMENT USING ANY OF THE ACCOUNT NUMBERS
<br><br>
ACCOUNT NUMBER 1<br>
COVIS CLUB LIMITED<br>
1016497736<br>
ZENITH BANK<br><br>
ACCOUNT NUMBER 2<br>
COVIS CLUB LIMITED<br>
0122932454<br>
WEMA BANK<br><br>
<!--FOR BITCOIN PAYMENT USE BITCOIN ADDRESS BELOW<br>-->
<!--16SzQ7q4wSbYakCbUBDx9ksgXEtmLcevLZ<br>
<br>-->
After Payment Kindly Contact COVIS CLUB INTERNATIONAL SUPPORT on WhatsApp via link below to Receive your E-Pins instantly<br>
https://wa.me/2349039188906
<br>
<br>
1 Epin Cost N2,100 And $6.5 When Paying using Bitcoin<br>
<br>
<br>
Thank you<br>
CCI, MANAGEMENT
<br><br><br>
</div>
<div class="p-2 text-xs-center text-muted">
Already have an account? <a class="text-black" href="login.php"><span class="underline">Login</span></a>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="contact-bg-logo"><i class="fas fa-comment"></i></div>
<!--=================================footer-->
<?php include('footer.php'); ?>
<!--=================================
Javascript -->
<!-- JS Global Compulsory (Do not remove)-->
<script src="js/jquery-3.4.1.min.js"></script>
<script src="js/popper/popper.min.js"></script>
<script src="js/bootstrap/bootstrap.min.js"></script>
<!-- Page JS Implementing Plugins (Remove the plugin script here if site does not use that feature)-->
<script src="js/jquery.appear.js"></script>
<script src="js/counter/jquery.countTo.js"></script>
<script src="js/owl-carousel/owl.carousel.min.js"></script>
<script src="js/jarallax/jarallax.min.js"></script>
<script src="js/jarallax/jarallax-video.min.js"></script>
<script src="js/magnific-popup/jquery.magnific-popup.min.js"></script>
<script src="js/horizontal-timeline/horizontal-timeline.js"></script>
<script src="js/shuffle/shuffle.min.js"></script>
<!-- Template Scripts (Do not remove)-->
<script src="js/custom.js"></script>
</body>
<!-- Mirrored from themes.potenzaglobalsolutions.com/html/hi-soft/contact.html by HTTrack Website Copier/3.x [XR&CO'2014], Thu, 30 Jul 2020 16:25:43 GMT -->
</html>