//include "../header.php";
define("prog_path","/data/websites/psdland.com/www/download/");
include prog_path."config.php";
include prog_path."login.db.php";
session_start();
if (isset($_SESSION['username'])){
header("Location: $website_url");
die;
}
if (isset($_REQUEST['clicked'])){
if (register_user($username,$password))
{if (send_user_password($username))
display_msg("تم ارسال كود التفعيل إلى بريدك
Activation code sent to your email");
else
display_msg("فشلت عملية ارسال كود التفعيل لبريدك الرجاء الاتصال بادارة الموقع
failed to send activation code to your email please contact the webmaster");
}
else{
display_msg(" فشلت عملية التسجيل تم التسجيل بهذا البريد من قبل لم تقم بادخال معلومات صحيحة
failed to register you, either invalid username or already registered
");
}
}
else {
$s = new MySmarty;
$s->display('signup.tpl');
die;
}
?>