Your IP : 18.227.209.89
<?php
session_start(); ob_start();
require_once('account/includes/connection.php');
$signup = $_SESSION['signup']??0;
@$ref = $_GET['r']??'';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="author" content="DSAThemes"/>
<meta name="description" content=""/>
<meta name="keywords" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<!-- SITE TITLE -->
<title>Sign Up | Blossom Foods</title>
<!-- FAVICON AND TOUCH ICONS -->
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<link rel="icon" href="images/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" sizes="152x152" href="images/apple-touch-icon-152x152.png">
<link rel="apple-touch-icon" sizes="120x120" href="images/apple-touch-icon-120x120.png">
<link rel="apple-touch-icon" sizes="76x76" href="images/apple-touch-icon-76x76.png">
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
<link rel="icon" href="images/apple-touch-icon.png" type="image/x-icon">
<!-- GOOGLE FONTS -->
<link href="https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;700&display=swap" rel="stylesheet">
<!-- BOOTSTRAP CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- FONT ICONS -->
<link href="css/flaticon.css" rel="stylesheet">
<!-- PLUGINS STYLESHEET -->
<link href="css/menu.css" rel="stylesheet">
<link id="effect" href="css/dropdown-effects/fade-down.css" media="all" rel="stylesheet">
<link href="css/magnific-popup.css" rel="stylesheet">
<link href="css/owl.carousel.min.css" rel="stylesheet">
<link href="css/owl.theme.default.min.css" rel="stylesheet">
<!-- ON SCROLL ANIMATION -->
<link href="css/animate.css" rel="stylesheet">
<!-- TEMPLATE CSS -->
<link href="css/style.css" rel="stylesheet">
<!-- RESPONSIVE CSS -->
<link href="css/responsive.css" rel="stylesheet">
</head>
<body>
<?php if(isset($report)){ $pro->Alert();} ?>
<!-- PRELOADER SPINNER
=============================================
<div id="loading" class="skyblue-loading">
<div id="loading-center">
<div id="loading-center-absolute">
<div class="object" id="object_one"></div>
<div class="object" id="object_two"></div>
<div class="object" id="object_three"></div>
<div class="object" id="object_four"></div>
</div>
</div>
</div>-->
<!-- PAGE CONTENT
============================================= -->
<div id="page" class="page">
<!-- SIGN UP PAGE
============================================= -->
<section id="signup-2" class="signup-section division">
<div class="container">
<div class="row">
<div class="col-md-8 col-lg-6 offset-md-2 offset-lg-3">
<!-- LOGO -->
<div class="login-page-logo">
<img src="images/blossom-logo.png">
</div>
<!-- SIGN UP FORM -->
<div class="register-form">
<form method="post" class="row sign-up-form">
<?php if($signup==0){ ?>
<!-- Title-->
<div class="col-md-12">
<div class="register-form-title text-center">
<h4 class="h4-lg">Create Account</h4>
<p class="p-xl">Tell us a little about yourself</p>
</div>
</div>
<div class="col-sm-12">
<label for="inputFirstName" class="form-label">First Name</label>
<input type="text" class="form-control" id="inputFirstName" placeholder="Enter Firstname" name="firstname" required>
</div>
<div class="col-sm-12">
<label for="inputLastName" class="form-label">Last Name</label>
<input type="text" class="form-control" id="inputLastName" placeholder="Enter Lastname" name="lastname" required>
</div>
<!-- Form Input -->
<div class="col-12">
<label for="inputEmailAddress" class="form-label">Phone Number</label>
<input type="number" name="phone" class="form-control" id="inputEmailAddress" placeholder="234 803 534 8734" required>
</div>
<div class="col-12">
<label for="inputEmailAddress" class="form-label">Email Address</label>
<input type="email" name="email" class="form-control" id="inputEmailAddress" placeholder="example@user.com" required>
</div>
<div class="col-12">
<label for="username" class="form-label">Username</label>
<input type="text" class="form-control" name="username" id="username" placeholder="funname" required>
</div>
<div class="col-12">
<label for="inputChoosePassword" class="form-label">Password</label>
<input type="password" name="password" class="form-control" id="" placeholder="Enter Password">
</div>
<div class="col-12">
<label for="inputSelectCountry" class="form-label">Referral Id</label>
<input type="text" name="ref" class="form-control" id="inputSelectCountry" placeholder="Sponsor's ID" value="<?= $ref ?>">
</div>
<!-- Form Submit Button -->
<div class="col-md-12">
<button type="submit" class="btn btn-md btn-skyblue tra-black-hover submit" name="StartSignup">Create Account</button>
</div>
<!-- Checkbox -->
<div class="col-md-12">
<div class="form-data">
<div class="form-check">
<input type="checkbox" class="form-check-input" id="exampleCheck1" checked>
<label class="form-check-label" for="exampleCheck1">
<span>By clicking “Create Account”, you agree to our <a href="#terms">Terms and Conditions</a> </span>
</label>
</div>
</div>
</div>
<?php }else{ ?>
<h4 class="h4-lg">Registeration PIN</h4>
<p class="p-xl">Enter your PIN to complete your registration</p>
<div class="col-12">
<label for="inputSelectCountry" class="form-label">Registration PIN</label>
<input type="text" name="pin" class="form-control" id="inputSelectCountry" placeholder="Enter PIN" ><br>
<div class="d-grid">
<button type="submit" class="btn btn-md btn-skyblue tra-black-hover submit" name="PayWithPin">COMPLETE REGISTRATION</button>
</div>
</div>
<?php } ?>
<!-- Sing In Link -->
<div class="col-md-12 text-center">
<p class="create-account">
Already have an account? <a href="login" class="skyblue-color">Log in</a>
</p>
</div>
</form>
</div> <!-- END SIGN UP FORM -->
<!-- SIGN UP PAGE FOOTER -->
<div class="sign-in-footer text-center">
<p>Copyright <?= date('Y') ?> Blossom Foods Int. All Rights Reserved</p>
</div>
</div>
</div> <!-- End row -->
</div> <!-- End container -->
</section> <!-- END SIGN UP PAGE -->
</div> <!-- END PAGE CONTENT -->
<!-- EXTERNAL SCRIPTS
============================================= -->
<script src="js/jquery-3.6.0.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/modernizr.custom.js"></script>
<script src="js/jquery.easing.js"></script>
<script src="js/jquery.appear.js"></script>
<script src="js/jquery.scrollto.js"></script>
<script src="js/menu.js"></script>
<script src="js/imagesloaded.pkgd.min.js"></script>
<script src="js/isotope.pkgd.min.js"></script>
<script src="js/owl.carousel.min.js"></script>
<script src="js/jquery.magnific-popup.min.js"></script>
<script src="js/quick-form.js"></script>
<script src="js/request-form.js"></script>
<script src="js/jquery.validate.min.js"></script>
<script src="js/jquery.ajaxchimp.min.js"></script>
<script src="js/wow.js"></script>
<!-- Custom Script -->
<script src="js/custom.js"></script>
<!-- Google Analytics: Change UA-XXXXX-X to be your site's ID. Go to http://www.google.com/analytics/ for more information. -->
<!--
<script>
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXXX-X']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
-->
</body>
</html>