| Server IP : 210.245.233.93 / Your IP : 216.73.216.226 Web Server : Apache/2.2.15 (CentOS) System : Linux webserver2.onesolution.com.hk 2.6.32-754.35.1.el6.x86_64 #1 SMP Sat Nov 7 12:42:14 UTC 2020 x86_64 User : apache ( 48) PHP Version : 5.3.3 Disable Function : exec, shell_exec, system, passthru, popen, proc_open, pcntl_exec MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/hkosl.com/m.musiccircle/ |
Upload File : |
<? include('_init.php');
$id = intval($_SESSION['member_login']);
if (!$id) {
$path = 'signupTutor.php';
@header("Location: {$path}");
echo "<script language='JavaScript'>window.location='{$path}'</script>";
exit();
} else {
$sql = "select * from tutor_main where id = ? and deleted = ? and status = ?";
$parameters = array($id, 0, 2);
$row = bind_pdo($sql, $parameters, "selectone");
if (!$row['id']) {
$path = 'index.php';
@header("Location: {$path}");
echo "<script language='JavaScript'>window.location='{$path}'</script>";
exit();
}
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<? include('_head.php') ?>
<link href="css/_sign.css" type="text/css" rel="stylesheet">
<script src='https://www.google.com/recaptcha/api.js?hl=en'></script>
<script>
function refreshcode() {
$('#LiCodeiframe').html('<iframe width="160" height="50" src="../_verifyCode.php" frameborder="0" scrolling="no" marginwidth="0"></iframe>');
}
</script>
<script type="text/javascript" src="js/facebook.js"></script>
</head>
<body>
<!-- Navigation -->
<? include('_header.php'); ?>
<div class="formSection">
<? $signupMenu = 'menu' ?>
<? include('_signupTutorMenu.php') ?>
<div class="TutorForm">
<form action="../_process.php" method="post" enctype="multipart/form-data" id="LiForm">
<input type="hidden" name="action" value="signup_tutorverification"/>
<input type="hidden" name="facebook_id" value="<? if ($row['facebook_id']) {
echo $row['facebook_id'];
} ?>"/>
<!--<div class="VerifyHeading">將你的帳戶進行認證和與社交網絡聯繫 是最容易獲取學生信任的方法 !!!</div>-->
<div class="SocialNetwork">
<div class="SocialSet" style="margin-top:10px;">
<div class="SocialLeft">
<div><img src="../img/signup/Icon_Facebook.png"><?= _lang("Connect Facebook") ?></div>
<div>
<font color="#0012ff" style="font-size:12px; font-weight:100;"><?= _lang("Student can know more about us through Facebook.") ?></font>
</div>
</div>
<div class="SocialRight">
<? if ($row['facebook_id']) { ?>
<input type="button" value="<?= _lang("Connected") ?>" id="LiConnectFB" class="SocialSend">
<? } else { ?>
<input type="button" value="<?= _lang("Connect") ?>" id="LiConnectFB" class="SocialSend" sname="<?= _lang("Connected") ?>" onclick="statusChangeCallback()">
<div style="color:#F00; display:none;" class="error" id="fbError">
<?= _lang('This facebook account has been used.') ?>
</div>
<? } ?>
</div>
</div>
<!--
<div class="SocialSet">
<div class="SocialLeft"><img src="../img/signup/Icon_GooglePlus.png">Google+</div>
<div class="SocialRight">
<input type="button" value="CONNECT" class="SocialSend">
</div>
</div>-->
</div>
<div class="InputDataIII">
<input type="checkbox" name="is_provision" value="1" required>
<?= html_entity_decode(_lang('Read and understand all of the above ')) ?>
<a href="tnc.php">
<?= _lang('Terms of Service') ?>
</a>
<div style="color:#F00; display:none;" class="error" id="provisionError">
<?= _lang('Please click if you have read') ?>
</div>
</div>
<input type="submit" value="<?= _lang('SUBMIT') ?>" id="submitBTN" class="submitBTN">
</form>
</div>
</div>
<? include('_footer.php') ?>
</body>
</html>