login.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <?php
  2. include "conn.php";
  3. $act = $_GET['act'] ?? '';
  4. if ($act == "logout") {
  5. // Clear all session variables
  6. $_SESSION['loginid'] = "";
  7. $_SESSION['loginuser'] = "";
  8. $_SESSION['loginname'] = "";
  9. $_SESSION['loginpower'] = "";
  10. session_destroy();
  11. }
  12. if ($act == "login") {
  13. checkPost();
  14. $loginuser = textEncode($_POST['loginuser'] ?? '');
  15. $loginpwd = textEncode($_POST['loginpwd'] ?? '');
  16. $logincode = $_POST['logincode'] ?? '';
  17. if ($loginuser == "") {
  18. echo "1";
  19. exit;
  20. }
  21. if ($loginpwd == "") {
  22. echo "2";
  23. exit;
  24. }
  25. if ($logincode != $_SESSION['zengscode']) {
  26. echo "3";
  27. exit;
  28. }
  29. $sql = "SELECT id, loginuser, loginpwd, loginstate, loginname, loginlasttime, loginlastip,
  30. loginthistime, loginthisip, loginpower, logincount
  31. FROM login WHERE loginuser = ?";
  32. $stmt = $conn->prepare($sql);
  33. $stmt->execute([$loginuser]);
  34. if ($stmt->rowCount() == 0) {
  35. echo "4";
  36. exit;
  37. }
  38. $row = $stmt->fetch(PDO::FETCH_ASSOC);
  39. if ($row['loginpwd'] != md5($loginpwd)) {
  40. echo "5";
  41. exit;
  42. }
  43. if ($row['loginstate'] < 1) {
  44. echo "6";
  45. exit;
  46. }
  47. // Check power status
  48. $sql = "SELECT COUNT(powerstate) as count, powerstate FROM power WHERE id = ? GROUP BY powerstate";
  49. $stmt = $conn->prepare($sql);
  50. $stmt->execute([$row['loginpower']]);
  51. $power = $stmt->fetch(PDO::FETCH_ASSOC);
  52. if (!$power || $power['count'] == 0 || $power['powerstate'] == 0) {
  53. echo "6";
  54. exit;
  55. }
  56. $_SESSION['zengscode'] = "";
  57. // Update login information
  58. $sql = "UPDATE login SET
  59. loginlasttime = loginthistime,
  60. loginlastip = loginthisip,
  61. loginthistime = NOW(),
  62. loginthisip = ?,
  63. logincount = logincount + 1
  64. WHERE id = ?";
  65. $stmt = $conn->prepare($sql);
  66. $stmt->execute([getIp(), $row['id']]);
  67. // Set session variables
  68. $_SESSION['loginid'] = $row['id'];
  69. $_SESSION['loginuser'] = $row['loginuser'];
  70. $_SESSION['loginname'] = $row['loginname'];
  71. $_SESSION['loginpower'] = $row['loginpower'];
  72. echo "7";
  73. exit;
  74. }
  75. ?>
  76. <!DOCTYPE html>
  77. <html xmlns="http://www.w3.org/1999/xhtml">
  78. <head>
  79. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  80. <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
  81. <link href="css/loginlayout.css" type="text/css" rel="stylesheet" />
  82. <title><?php echo $webname; ?> - 网站后台管理</title>
  83. <script language="javascript" src="js/jquery-1.7.2.min.js"></script>
  84. <script type="text/javascript" src="js/loginjs.js"></script>
  85. </head>
  86. <body>
  87. <div id="container">
  88. <form id="loginform" name="loginform" method="post">
  89. <div class="loginuser"><label for="loginuser">用户帐号:</label><input type="text" id="loginuser" name="loginuser" maxlength="50" /></div>
  90. <div class="loginpwd"><label for="loginpwd">用户密码:</label><input type="password" id="loginpwd" name="loginpwd" maxlength="50" /></div>
  91. <div class="logincode"><label for="logincode">验 证 码:</label><input type="text" id="logincode" name="logincode" maxlength="5" /><span id="showlogincode"></span></div>
  92. <div><input type="submit" id="loginbtn" name="loginbtn" value="登陆" /></div>
  93. <div id="formmsg"></div>
  94. </form>
  95. <div id="copyright">Copyright © Mietubl All Rights Reserved</div>
  96. </div>
  97. </body>
  98. </html>