login.system 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="robots" content="noindex" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  7. <link rel="author" href="humans.txt"/>
  8. <title>ArozOS - Login</title>
  9. <link rel="stylesheet" href="script/semantic/semantic.min.css">
  10. <link rel="stylesheet" href="script/ao.css">
  11. <script type="application/javascript" src="script/jquery.min.js"></script>
  12. <script type="application/javascript" src="script/semantic/semantic.min.js"></script>
  13. <style>
  14. @media only screen and (max-height: 1000px) {
  15. .leftPictureFrame {
  16. height:auto !important;
  17. }
  18. }
  19. .leftPictureFrame{
  20. position:fixed;
  21. top:0px;
  22. left:0px;
  23. min-width:calc(100% - 500px);
  24. min-height:100%;
  25. background-color:#faf7eb;
  26. background-image:url("img/public/auth_bg.jpg");
  27. -webkit-background-size: cover;
  28. -moz-background-size: cover;
  29. -o-background-size: cover;
  30. background-size: cover;
  31. background-repeat: no-repeat, no-repeat;
  32. background-position:bottom left;
  33. }
  34. .rightLoginFrame{
  35. position:fixed;
  36. top:0;
  37. right:0;
  38. height:100%;
  39. width:500px;
  40. background-color:white;
  41. z-index:100%;
  42. padding-left: 30px;
  43. padding-right: 20px;
  44. }
  45. .fullHeightImage{
  46. height:100% !important;
  47. position:relative;
  48. left:-20px;
  49. }
  50. .bottombar{
  51. position:absolute;
  52. bottom:1em;
  53. left:0;
  54. padding-left: 20px;
  55. width:100%;
  56. }
  57. #animationFrame{
  58. position:absolute;
  59. bottom:0px;
  60. width:100%;
  61. }
  62. .textbox{
  63. margin-bottom:15px;
  64. }
  65. .themecolor{
  66. background-color: #485b73 !important;
  67. transition: background-color 0.1s;
  68. }
  69. .themecolor:hover{
  70. background-color: #677c96 !important;
  71. }
  72. .subthemecolor{
  73. background-color: #3e4f64 !important;
  74. transition: background-color 0.1s;
  75. }
  76. .subthemecolor:hover{
  77. background-color: rgb(74, 88, 105) !important;
  78. }
  79. .loginbtn{
  80. color:white !important;
  81. margin-top:4em;
  82. }
  83. .oauthbtn{
  84. color:white !important;
  85. margin-top:1em;
  86. }
  87. </style>
  88. </head>
  89. <body>
  90. <div class="leftPictureFrame">
  91. </div>
  92. <div id="loginInterface" class="rightLoginFrame">
  93. <br><br><br>
  94. <img class="ui medium image" src="data:image/png;base64, {{service_logo}}">
  95. <div class="ui borderless basic segment">
  96. <p><i class="key icon"></i> Sign in <span class="hostname">ArozOS</span> with your username and password</p>
  97. <div class="ui fluid input textbox">
  98. <input id="username" type="text" placeholder="Username">
  99. </div>
  100. <div class="ui fluid input textbox">
  101. <input id="magic" type="password" placeholder="Password">
  102. </div>
  103. <div class="ui checkbox">
  104. <input id="rmbme" type="checkbox">
  105. <label for="rmbme">Remember Me</label>
  106. </div>
  107. <br><br>
  108. <button id="loginbtn" class="ui button loginbtn themecolor" style="display:inline-block;">Sign In</button>
  109. <div class="oauthonly" style="display:inline-block;">
  110. <a class="ui button oauthbtn subthemecolor" href="system/auth/oauth/login">Sign In via OAuth 2.0</a><br>
  111. </div>
  112. <div class="ldaponly" style="display:inline-block;">
  113. <a class="ui button oauthbtn subthemecolor" href="ldapLogin.system">Sign In via LDAP</a><br>
  114. </div>
  115. <br>
  116. <div class="ui breadcrumb" style="margin-top:12px;">
  117. <a class="section signup" style="cursor:pointer; display:none;" href="public/register/register.system">Sign Up</a>
  118. <div class="divider signup"> / </div>
  119. <a id="forgetpw" class="section" style="cursor:pointer" href="reset.system">Forgot Password</a>
  120. </div>
  121. <p style="margin-top:18px;color:#ff7a70; display:none;font-size:1.2em;"><i class="remove icon"></i><span id="errmsg">Error. Incorrect username or password.</span></p>
  122. </div>
  123. <div class="bottombar">
  124. © <a href="https://arozos.com">ArozOS</a> 2017 - <span class="thisyear"></span><br>
  125. <small style="font-size: 80%">Request Time: <span id="requestTime"></span></small>
  126. </div>
  127. </div>
  128. <script>
  129. var redirectionAddress = "{{redirection_addr}}";
  130. var loginAddress = "{{login_addr}}";
  131. var systemUserCount = "{{usercount}}" - 0; //Magic way to convert string to int :)
  132. var autoRedirectTimer;
  133. var isMobile = false; //initiate as false
  134. // device detection
  135. if(/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|ipad|iris|kindle|Android|Silk|lge |maemo|midp|mmp|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|phone)|xda|xiino/i.test(navigator.userAgent)
  136. || /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(navigator.userAgent.substr(0,4))) {
  137. isMobile = true;
  138. }
  139. if (isMobile){
  140. //Full screen the login panel
  141. $("#loginInterface").css("width","100%");
  142. }
  143. if (systemUserCount == 0){
  144. //There are no user in this system yet. Rediect to user setup
  145. window.location.href = "/user.system";
  146. }
  147. //Hide elements by default
  148. $(".ldaponly").hide();
  149. $(".oauthonly").hide();
  150. $(document).ready(function(){
  151. var currentdate = new Date();
  152. var datetime = currentdate.getDate() + "/"
  153. + (currentdate.getMonth()+1) + "/"
  154. + currentdate.getFullYear() + " "
  155. + currentdate.getHours() + ":"
  156. + currentdate.getMinutes() + ":"
  157. + currentdate.getSeconds();
  158. $("#requestTime").text(datetime);
  159. $(".ui.checkbox").checkbox();
  160. //Check if the user already logged in
  161. $.get("system/auth/checkLogin",function(data){
  162. try{
  163. if (data === true || data.trim() == "true"){
  164. //User already logged in. Redirect to target page.
  165. if (redirectionAddress == ""){
  166. //Redirect back to index
  167. window.location.href = "/";
  168. }else{
  169. console.log(data);
  170. //window.location.href = redirectionAddress;
  171. }
  172. }
  173. }catch(ex){
  174. //Assume not logged in
  175. console.log(data);
  176. }
  177. });
  178. //Check if the system is open for registry
  179. $.get("public/register/checkPublicRegister",function(data){
  180. if (data == true){
  181. $(".signup").show();
  182. }else{
  183. $(".signup").remove();
  184. }
  185. });
  186. //OAuth related code, check if system is open for ext login
  187. $.getJSON("system/auth/oauth/checkoauth",function(data){
  188. if (data.enabled == true){
  189. $(".oauthonly").show();
  190. }else{
  191. $(".oauthonly").hide();
  192. }
  193. //if auto redirect is on
  194. if(data.auto_redirect == true) {
  195. //checking if they come from desktop.system or mobile.system
  196. //if they come from that two pages, usually mean they are just logged out.
  197. if(document.referrer != ''){
  198. var path = new URL(document.referrer);
  199. } else {
  200. var path = new URL('http://0.0.0.0');
  201. }
  202. if(document.referrer != window.location.origin + "/desktop.system" && document.referrer != window.location.origin + "/mobile.system" && path.origin + path.pathname != window.location.origin + "/system/auth/oauth/authorize"){
  203. $(".ts.borderless.basic.segment").attr("style","display: none;");
  204. $(".ts.borderless.basic.segment").attr("id","aoLogin");
  205. $(".ts.borderless.basic.segment").after('<div id="autoRedirectSegment" class="ui borderless basic segment"><p><i class="key icon"></i>Redirecting to organization sign-in page in 5 seconds...</p><br><a style="cursor: pointer;" onclick="stopAutoRedirect()">Cancel</a></div>');
  206. autoRedirectTimer = setTimeout(function(){
  207. window.location.href = "system/auth/oauth/login?redirect=" + redirectionAddress;
  208. }, 3000);
  209. }
  210. }
  211. });
  212. //LDAP related code, check if system is open for ext login
  213. $.getJSON("system/auth/ldap/checkldap",function(data){
  214. if (data.enabled == true && window.location.pathname.toLowerCase() != "/ldaplogin.system"){
  215. $(".ldaponly").show();
  216. }else{
  217. $(".ldaponly").hide();
  218. }
  219. });
  220. if(get('redirect') != undefined){
  221. $(".section.signin").attr("href","system/auth/oauth/login?redirect=" + redirectionAddress);
  222. }
  223. //Get the system hostname and replace the hostname fields
  224. $.get("system/info/getArOZInfo", function(data){
  225. document.title = data.HostName + " - Sign In"
  226. $(".hostname").text(data.HostName);
  227. });
  228. });
  229. //Event handlers for buttons
  230. $("#loginbtn").on("click",function(){
  231. login();
  232. });
  233. $("input").on("keydown",function(event){
  234. if (event.keyCode === 13) {
  235. event.preventDefault();
  236. if ($(this).attr("id") == "magic"){
  237. login();
  238. }else{
  239. //Fuocus to password field
  240. $("#magic").focus();
  241. }
  242. }
  243. });
  244. //Login system with the given username and password
  245. function login(){
  246. var username = $("#username").val();
  247. var magic = $("#magic").val();
  248. var rmbme = document.getElementById("rmbme").checked;
  249. $("input").addClass('disabled');
  250. $.post(loginAddress, {"username": username, "password": magic, "rmbme": rmbme}).done(function(data){
  251. if (data.error !== undefined){
  252. //Something went wrong during the login
  253. $("#errmsg").text(data.error);
  254. $("#errmsg").parent().stop().finish().slideDown('fast').delay(5000).slideUp('fast');
  255. }else if(data.redirect !== undefined){
  256. //LDAP Related Code
  257. window.location.href = data.redirect;
  258. }else{
  259. //Login succeed
  260. if (redirectionAddress == "" || redirectionAddress == "/"){
  261. //Redirect back to index
  262. window.location.href = "./";
  263. }else{
  264. if (window.location.hash.length > 0){
  265. redirectionAddress += window.location.hash
  266. }
  267. window.location.href = redirectionAddress;
  268. }
  269. }
  270. $("input").removeClass('disabled');
  271. });
  272. }
  273. function get(name){
  274. if(name=(new RegExp('[?&]'+encodeURIComponent(name)+'=([^&]*)')).exec(location.search))
  275. return decodeURIComponent(name[1]);
  276. }
  277. function stopAutoRedirect(){
  278. clearTimeout(autoRedirectTimer);
  279. $("#aoLogin").removeAttr("style");
  280. $("#autoRedirectSegment").attr("style", "display:none");
  281. }
  282. $(".thisyear").text(new Date().getFullYear());
  283. function updateRenderElements(){
  284. if (window.innerHeight < 520){
  285. $(".bottombar").hide();
  286. }else{
  287. $(".bottombar").show();
  288. }
  289. }
  290. updateRenderElements();
  291. $(window).on("resize", function(){
  292. updateRenderElements();
  293. });
  294. </script>
  295. </body>
  296. </html>