Andreu | 66ad5cf | 2019-09-18 17:15:44 +0200 | [diff] [blame] | 1 | <html> |
| 2 | <head> |
| 3 | <meta charset="UTF-8"> |
Andreu | 0d0f9fd | 2019-09-23 03:56:08 +0200 | [diff] [blame] | 4 | <title>PastanagAPP</title> |
avm99963 | db383ed | 2019-09-22 02:14:42 +0200 | [diff] [blame] | 5 | |
| 6 | <meta name="viewport" content="width=device-width, initial-scale=1"> |
Andreu | 0d0f9fd | 2019-09-23 03:56:08 +0200 | [diff] [blame] | 7 | <link rel="manifest" href="https://api.myjson.com/bins/u6r41"> |
| 8 | |
| 9 | <!-- Apple web app --> |
| 10 | <link rel="apple-touch-icon" href="./bin/images/icons/icon-72x72.png"> |
| 11 | <meta name="apple-mobile-web-app-title" content="PastanagAPP"> |
| 12 | <meta name="apple-mobile-web-app-capable" content="yes"> |
| 13 | <meta name="apple-mobile-web-app-status-bar-style" content="green"> |
avm99963 | db383ed | 2019-09-22 02:14:42 +0200 | [diff] [blame] | 14 | |
Andreu | 4b2fbd9 | 2019-09-22 22:30:25 +0200 | [diff] [blame] | 15 | <link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Open+Sans" /> |
| 16 | |
Andreu | 66ad5cf | 2019-09-18 17:15:44 +0200 | [diff] [blame] | 17 | <link rel="stylesheet" href="./css/basic.css" /> |
| 18 | <link rel="stylesheet" href="./css/login.css" /> |
avm99963 | db383ed | 2019-09-22 02:14:42 +0200 | [diff] [blame] | 19 | |
Andreu | 0b2f843 | 2019-09-18 20:09:59 +0200 | [diff] [blame] | 20 | <script src="https://code.jquery.com/jquery-3.4.1.min.js"></script> |
Andreu | 543e70c | 2019-09-22 14:08:49 +0200 | [diff] [blame] | 21 | <script src="https://rawgit.com/notifyjs/notifyjs/master/dist/notify.js"></script> |
| 22 | |
| 23 | <script src="./js/utils.js"></script> |
| 24 | <script src="./js/animations.js"></script> |
Andreu | 66ad5cf | 2019-09-18 17:15:44 +0200 | [diff] [blame] | 25 | </head> |
| 26 | <body> |
| 27 | <div id="outter-container"> |
| 28 | <div id="inner-container"> |
Andreu | a0fc827 | 2019-09-23 00:35:25 +0200 | [diff] [blame] | 29 | <form action="./main.php" method="POST"> |
Andreu | dd6cfb4 | 2019-09-22 19:52:39 +0200 | [diff] [blame] | 30 | <input type="hidden" name="user" id="user"> |
| 31 | |
| 32 | <!-- MD Search Box --> |
| 33 | <div class="md-google-search__metacontainer"> |
| 34 | <div class="md-google-search__container"> |
| 35 | <div class="md-google-search"> |
| 36 | <span class="md-google-search__search-btn"> |
| 37 | <svg height="24px" viewBox="0 0 24 24" width="24px" xmlns="http://www.w3.org/2000/svg"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"></path><path d="M0 0h24v24H0z" fill="none"></path></svg> |
| 38 | </span> |
| 39 | <div class="md-google-search__field-container"> |
Andreu | 2211ab2 | 2019-09-23 18:13:26 +0200 | [diff] [blame^] | 40 | <input id="search-input" class="md-google-search__field" required autocomplete="off" placeholder="Introdueix el teu nom..." value="" name="search" type="text" spellcheck="false" style="outline: none;"> |
Andreu | dd6cfb4 | 2019-09-22 19:52:39 +0200 | [diff] [blame] | 41 | </div> |
| 42 | <span class="md-google-search__empty-btn" style="display: none;"> |
| 43 | <svg focusable="false" height="24px" viewBox="0 0 24 24" width="24px" xmlns="http://www.w3.org/2000/svg"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"></path><path d="M0 0h24v24H0z" fill="none"></path></svg> |
| 44 | </span> |
| 45 | </div> |
| 46 | </div> |
| 47 | |
| 48 | <div class="autocomplete-container" style="display: none;"> |
| 49 | <div id="autocomplete-list" class="autocomplete-items"></div> |
| 50 | </div> |
| 51 | </div> |
avm99963 | db383ed | 2019-09-22 02:14:42 +0200 | [diff] [blame] | 52 | |
Andreu | 20cbd1d | 2019-09-22 00:00:57 +0200 | [diff] [blame] | 53 | <input disabled required placeholder="Clau d'accés..." id="password" type="password" name="password"/> |
Andreu | 4b2fbd9 | 2019-09-22 22:30:25 +0200 | [diff] [blame] | 54 | <input type="submit" value="Entrar" id="submit" /> |
Andreu | 66ad5cf | 2019-09-18 17:15:44 +0200 | [diff] [blame] | 55 | </form> |
Andreu | 0d0f9fd | 2019-09-23 03:56:08 +0200 | [diff] [blame] | 56 | |
| 57 | <p>La primera persona que entri al teu compte tindrà l'oportunitat de canviar la contrasenya.</p> |
Andreu | 66ad5cf | 2019-09-18 17:15:44 +0200 | [diff] [blame] | 58 | </div> |
| 59 | </div> |
avm99963 | db383ed | 2019-09-22 02:14:42 +0200 | [diff] [blame] | 60 | |
Andreu | dd6cfb4 | 2019-09-22 19:52:39 +0200 | [diff] [blame] | 61 | <script src="./js/autocomplete.js"></script> |
Andreu | 0b2f843 | 2019-09-18 20:09:59 +0200 | [diff] [blame] | 62 | <script> |
Andreu | dd6cfb4 | 2019-09-22 19:52:39 +0200 | [diff] [blame] | 63 | fetch("./ajax/getusers.php").then(result => result.json()).then(users => { |
Andreu | dd6cfb4 | 2019-09-22 19:52:39 +0200 | [diff] [blame] | 64 | autocomplete(document.getElementById("search-input"), users, "search"); |
Andreu | 1bf9ab7 | 2019-09-22 20:27:40 +0200 | [diff] [blame] | 65 | console.log(users); |
| 66 | |
Andreu | 9950105 | 2019-09-22 20:09:08 +0200 | [diff] [blame] | 67 | userid = <?=isset($_COOKIE['user']) ? (int)$_COOKIE['user'] : -1 ?>; |
Andreu | 1bf9ab7 | 2019-09-22 20:27:40 +0200 | [diff] [blame] | 68 | username = get_user_name(users, userid); |
Andreu | 4b2fbd9 | 2019-09-22 22:30:25 +0200 | [diff] [blame] | 69 | if (userid > 0) $("#search-input").prop("placeholder", username); |
Andreu | 0b2f843 | 2019-09-18 20:09:59 +0200 | [diff] [blame] | 70 | }); |
Andreu | 0d0f9fd | 2019-09-23 03:56:08 +0200 | [diff] [blame] | 71 | |
Andreu | 543e70c | 2019-09-22 14:08:49 +0200 | [diff] [blame] | 72 | $(document).ready(function() { |
| 73 | // Notify of messages |
| 74 | if (getUrlParameter("passwordchanged")) read_message("La teva clau d'accés ha canviat", "error"); |
| 75 | if (getUrlParameter("wrongpassword")) read_message("La clau d'accés no és correcta", "error"); |
Andreu | 0d0f9fd | 2019-09-23 03:56:08 +0200 | [diff] [blame] | 76 | if (getUrlParameter("wrongconfirmation")) read_message("Les contrasenyes no coincideixen", "error"); |
| 77 | if (getUrlParameter("errordb")) read_message("Hi ha hagut un problema a la base de dades, torna-ho a intentar", "error"); |
| 78 | if (getUrlParameter("successpassword")) read_message("La teva clau d'accés s'ha guardat", "success"); |
Andreu | 543e70c | 2019-09-22 14:08:49 +0200 | [diff] [blame] | 79 | }); |
Andreu | 0b2f843 | 2019-09-18 20:09:59 +0200 | [diff] [blame] | 80 | </script> |
Andreu | 66ad5cf | 2019-09-18 17:15:44 +0200 | [diff] [blame] | 81 | </body> |
| 82 | </html> |