login.php 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. <!DOCTYPE HTML>
  2. <head>
  3. <meta name="viewport" content="width=device-width, initial-scale=0.7, shrink-to-fit=no">
  4. <title>ArOZ Onlineβ User Authentication</title>
  5. <link rel="stylesheet" href="script/tocas/tocas.css">
  6. <script src="script/paperjs/paper-full.min.js"></script>
  7. <script src="script/tocas/tocas.js"></script>
  8. <script src="script/jquery.min.js"></script>
  9. <?php
  10. //This is a script for checking config files as the standard checking method requires user to be authed first.
  11. if (file_exists("SystemAOB/functions/personalization/sysconf/login.config")){
  12. $settings = json_decode(file_get_contents("SystemAOB/functions/personalization/sysconf/login.config"),true);
  13. $bgi = $settings["background-image"][3];
  14. $ipdebug = $settings["enable-ipdebug"][3] == "true";
  15. $themeColor = $settings["theme-color"][3];
  16. $titleImg = $settings["title-image"][3];
  17. }else{
  18. $bgi = "img/background3.png";
  19. $ipdebug = true;
  20. $themeColor = "#007f78";
  21. $titleImg = "img/auth_icon.png";
  22. }
  23. ?>
  24. <style>
  25. @media only screen and (max-height: 1000px) {
  26. .leftPictureFrame {
  27. height:auto !important;
  28. }
  29. }
  30. .leftPictureFrame{
  31. position:fixed;
  32. top:0px;
  33. left:0px;
  34. min-width:calc(100% - 500px);
  35. min-height:100%;
  36. background-color:#faf7eb;
  37. background-image:url("<?php echo $bgi; ?>");
  38. -webkit-background-size: cover;
  39. -moz-background-size: cover;
  40. -o-background-size: cover;
  41. background-size: cover;
  42. background-repeat: no-repeat, no-repeat;
  43. background-position:bottom left;
  44. }
  45. .rightLoginFrame{
  46. position:fixed;
  47. top:0;
  48. right:0;
  49. height:100%;
  50. width:500px;
  51. background-color:white;
  52. z-index:100%;
  53. padding-left: 50px;
  54. padding-right: 30px;
  55. }
  56. .fullHeightImage{
  57. height:100% !important;
  58. position:relative;
  59. left:-20px;
  60. }
  61. .bottombar{
  62. position:absolute;
  63. bottom:0;
  64. left:0;
  65. padding-left: 20px;
  66. width:100%;
  67. }
  68. #animationFrame{
  69. position:absolute;
  70. bottom:0px;
  71. width:100%;
  72. }
  73. #preload-01 { background: url(http://img/background2.jpg) no-repeat -9999px -9999px; }
  74. </style>
  75. </head>
  76. <body>
  77. <img id="mascot" src="img/login_mascot.png" style="display:none;"></img>
  78. <div class="leftPictureFrame">
  79. </div>
  80. <div id="loginInterface" class="rightLoginFrame">
  81. <br><br><br>
  82. <img class="ts medium image" src="<?php echo $titleImg;?>">
  83. <br><br>
  84. <p><i class="privacy icon"></i>Sign in with your ArOZ Online username and password</p>
  85. <?php //print_r($_COOKIE); //Debug only
  86. $autoLogin = true;
  87. ?>
  88. <br>
  89. <div class="ts fluid input textbox">
  90. <input id="username" type="text" placeholder="Username" style="border-radius: 0px !important;" value="<?php
  91. if (isset($_COOKIE['username']) && $_COOKIE['username'] != ""){
  92. echo $_COOKIE['username'];
  93. }else{
  94. $autoLogin = false;
  95. }
  96. ?>">
  97. </div>
  98. <br><br>
  99. <div class="ts fluid input textbox">
  100. <input id="password" type="password" placeholder="Password" style="border-radius: 0px !important;" value="<?php
  101. if (isset($_COOKIE['password']) && $_COOKIE['password'] != ""){
  102. echo $_COOKIE['password'];
  103. }else{
  104. $autoLogin = false;
  105. }
  106. ?>">
  107. </div>
  108. <br><br>
  109. <div class="ts checkbox">
  110. <?php
  111. //echo ($autoLogin ? "true" : "false");
  112. if ($autoLogin){
  113. echo '<input id="rmbme" name="rememberMe" type="checkbox" checked>';
  114. }else{
  115. echo '<input id="rmbme" name="rememberMe" type="checkbox">';
  116. }
  117. ?>
  118. <label for="rmbme">Keep Me logged In</label>
  119. </div><br><br>
  120. <div id="errmsg" style="color:<?php echo $themeColor; ?>;"></div>
  121. <br>
  122. <button class="ts primary button" style="background-color:<?php echo $themeColor; ?>;border-width: 0px;" onClick="postLogin();">Sign In</button>
  123. <?php
  124. $template = '<div class="ts outlined message">
  125. <div id="logoutmsg" style="color:#3fb7e2;"><i class="log out icon"></i>You have been logged out.</div>
  126. </div>';
  127. if (isset($_GET['logout'])){
  128. echo $template;
  129. }
  130. ?>
  131. <div class="bottombar">
  132. © ArOZ Online Project 2019 feat. <a href="http://imuslab.com/" target="_blacnk">IMUS Laboratory</a><br>
  133. <div style="display:inline;font-size:80%;"><?php
  134. if ($ipdebug){
  135. echo "<i class='disk outline icon'></i> " . $_SERVER['SERVER_NAME'] . ' ⇄ <i class="laptop icon"></i>' . $_SERVER['REMOTE_ADDR'];
  136. }
  137. ?></div>
  138. <br><br>
  139. </div>
  140. </div>
  141. <script>
  142. var session_login = <?php echo ($autoLogin)? "true" : "false"; ?>;
  143. window.mobilecheck = function() {
  144. var check = false;
  145. (function(a){if(/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i.test(a)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i.test(a.substr(0,4))) check = true;})(navigator.userAgent||navigator.vendor||window.opera);
  146. return check;
  147. };
  148. if (window.mobilecheck() == true){
  149. $("#loginInterface").css("width","100%");
  150. }
  151. $(document).ready(function(){
  152. if (session_login){
  153. postLogin();
  154. }
  155. });
  156. function postLogin(){
  157. $.ajax({
  158. type: "POST",
  159. url: "auth.php",
  160. data: {username:$("#username").val(),apwd:$("#password").val(),rmbm:$("#rmbme").val()}
  161. }).done(function( data ){
  162. console.log(data);
  163. if (data.includes("ERROR")){
  164. if (data.includes("Username not find")){
  165. $("#username").parent().addClass("error");
  166. $("#password").parent().removeClass("error");
  167. showErrorMsg("<i class='close icon'></i> Username not found.");
  168. }else if (data.includes("Password incorrect")){
  169. $("#password").parent().addClass("error");
  170. $("#username").parent().removeClass("error");
  171. showErrorMsg("<i class='close icon'></i> Password incorrect.");
  172. }
  173. }
  174. if (data.includes("DONE")){
  175. console.log($.urlParam('target'))
  176. localStorage.setItem("ArOZusername", $("#username").val());
  177. window.location.href=$.urlParam('target').replace("%26","&");
  178. }
  179. });
  180. }
  181. $('#password').keyup(function(e){
  182. if(e.keyCode == 13)
  183. {
  184. postLogin();
  185. }
  186. });
  187. $('#username').keyup(function(e){
  188. if(e.keyCode == 13){
  189. $('#password').focus();
  190. }else if (e.keyCode == 9){
  191. $('#password').focus();
  192. }
  193. });
  194. $.urlParam = function(name){
  195. var results = new RegExp('[\?&#]' + name + '=([^&]*)').exec(window.location.href);
  196. if (results == null || results == undefined){
  197. return "index.php";
  198. }
  199. return results[1] || 0;
  200. }
  201. function showErrorMsg(text){
  202. $("#errmsg").html(text);
  203. }
  204. var selectedCircle = "\u26AA";
  205. var emptyCircle = "\u25EF";
  206. $("#btn1").click(function(){
  207. $("#btn1").text(selectedCircle);
  208. $("#btn2").text(emptyCircle);
  209. $("#bgimage").fadeOut('fast',function(){
  210. $("#bgimage").attr("src","img/background.jpg").delay(500).fadeIn('slow');
  211. })
  212. });
  213. $("#btn2").click(function(){
  214. $("#btn1").text(emptyCircle);
  215. $("#btn2").text(selectedCircle);
  216. $("#bgimage").fadeOut('fast',function(){
  217. $("#bgimage").attr("src","img/background2.jpg").delay(500).fadeIn('slow');
  218. })
  219. });
  220. //Left pictureframe animation
  221. </script>
  222. </body>
  223. </html>