Modesy update wizard index.php
Code:
<?php
if (!function_exists('curl_init')) {
die('cURL is not available on your server! Please enable cURL to continue the installation. You can read the documentation for more information.');
}
function currentUrl($server)
{
$http = 'http';
if (isset($server['HTTPS'])) {
$http = 'https';
}
$host = $server['HTTP_HOST'];
$requestUri = $server['REQUEST_URI'];
return $http . '://' . htmlentities($host) . '/' . htmlentities($requestUri);
}
$current_url = currentUrl($_SERVER);
if (isset($_POST["btn_license_code"])) {
$license_code = $_POST['license_code'];
$response = "";
$url = "http://license.codingest.com/api/check_modesy_license_code?license_code=" . $license_code . "&domain=" . $current_url;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
if (empty($response)) {
$url = "https://license.codingest.com/api/check_modesy_license_code?license_code=" . $license_code . "&domain=" . $current_url;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
}
$data = json_decode($response);
if (!empty($data)) {
if ($data->code == "error") {
$error = "Invalid License Code!";
} else {
header("Location: database.php?license_code=" . $license_code . "&purchase_code=" . $data->code);
exit();
}
} else {
$error = "Invalid License Code!";
}
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Modesy - Update Wizard</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Poppins:400,500,700" rel="stylesheet">
<!-- Font-awesome CSS -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css" rel="stylesheet"/>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-8 col-sm-12 col-md-offset-2">
<div class="row">
<div class="col-sm-12 logo-cnt">
<p>
<h1 class="logo">Modesy</h1>
</p>
<p style="font-size: 24px;">Welcome to the Update Wizard</p>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="install-box">
<div class="steps">
<div class="step-progress">
<div class="step-progress-line" data-now-value="50" data-number-of-steps="2" style="width: 50%;"></div>
</div>
<div class="step active">
<div class="step-icon"><i class="fa fa-code"></i></div>
<p>Start</p>
</div>
<div class="step">
<div class="step-icon"><i class="fa fa-database"></i></div>
<p>Database</p>
</div>
</div>
<div class="messages">
<?php if (!empty($error)): ?>
<div class="alert alert-danger">
<strong><?php echo $error; ?></strong>
</div>
<?php endif; ?>
</div>
<div class="step-contents">
<div class="tab-1">
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">
<div class="tab-content">
<div class="tab_1">
<h1 class="step-title">Start</h1>
<div class="form-group text-center">
<a href="http://license.codingest.com/modesy-license" target="_blank" class="btn btn-success btn-custom">Get License Code</a>
</div>
<div class="form-group">
<label for="email">License Code</label>
<textarea name="license_code" class="form-control form-input" style="resize: vertical; height: 100px;line-height: 24px;padding: 10px;" placeholder="Enter License Code" required><?php echo @$_SESSION["license_code"]; ?></textarea>
</div>
</div>
</div>
<div class="tab-footer">
<button type="submit" name="btn_license_code" class="btn-custom pull-right">Next</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>