Advertisement
Guest User

Untitled

a guest
Jan 25th, 2015
462
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.17 KB | None | 0 0
  1. <?php
  2. /**
  3. *
  4. * @ This file is created by deZender.Net
  5. * @ deZender (PHP5 Decoder for Zend Encoder/SafeGuard & PhpExpress)
  6. *
  7. * @ Version : 2.0.0.3
  8. * @ Author : DeZender
  9. * @ Release on : 06.05.2013
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. echo "<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n<title>Sample Custom Login Page</title>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"inclick_style.css\" />\n<link rel=\"stylesheet\" type=\"text/css\" href=\"simply_common.css\" />\n</head>\n<body topmargin=\"0\" leftmargin=\"0\">\n";
  15. $thepageurl = "http://" . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"];
  16. echo "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse: collapse\" bordercolor=\"#111111\" width=\"100%\">\n <tr>\n <td width=\"50%\">\n <img src=\"images/logo_ad_sys_beta.gif\" width=\"181\" height=\"71\"></td>\n <td width=\"50%\" align=\"right\" valign=\"top\">\n <p align=\"right\">\n <img border=\"0\" src=\"images/incl3.jpg\" width=\"181\" height=\"71\"></td>\n </tr>\n</table>\n\n<hr>\n <a class=\"navi_menu\" href=\"signup.php?login_base_url=";
  17. echo $thepageurl;
  18. echo "\">Advertise With Us</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a class=\"navi_menu\" href=\"signup.php?user_type=pub&login_base_url=";
  19. echo $thepageurl;
  20. echo "\">Show Our Ads</a>\n<hr>\n\n<form method=\"POST\" action=\"client.php\">\n";
  21. if (array_key_exists("result_code", $_REQUEST)) {
  22. if ($_REQUEST["result_code"] == "authentication_failed") {
  23. echo "<div class=\"msgError\"><span class=\"title\"><font size=2>Your sign in information is not valid. Please try again.</font></span></div>";
  24. }
  25. if ($_REQUEST["result_code"] == "logout") {
  26. echo "<div class=\"msgInfo\"><span class=\"title\"><font size=2>You have been successfully logged out.</font></span></div>";
  27. }
  28. if ($_REQUEST["result_code"] == "account_locked") {
  29. echo "<div class=\"msgError\"><span class=\"title\"><font size=2>Your account is locked due to many failed login attempts. Please try again later.</font></span></div>";
  30. }
  31. .....................................................
  32. .....................
  33. .......
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement