Andreu | 78e5bb0 | 2019-09-22 13:38:04 +0200 | [diff] [blame] | 1 | <?php |
| 2 | require './credentials.php'; |
| 3 | require './php/utils.php'; |
Andreu | 0d0f9fd | 2019-09-23 03:56:08 +0200 | [diff] [blame] | 4 | |
Andreu | a0fc827 | 2019-09-23 00:35:25 +0200 | [diff] [blame] | 5 | $user = (int)$_POST['user']; |
Andreu | 0d0f9fd | 2019-09-23 03:56:08 +0200 | [diff] [blame] | 6 | $password = isset($_POST['password']) ? md5($_POST['password']) : ''; |
Andreu | 4b2fbd9 | 2019-09-22 22:30:25 +0200 | [diff] [blame] | 7 | |
Andreu | a0fc827 | 2019-09-23 00:35:25 +0200 | [diff] [blame] | 8 | // Check if password is correct |
| 9 | $query_password = "SELECT password FROM users WHERE id=".$user; |
| 10 | $real_password = query($query_password)->fetch_row()[0]; |
| 11 | if ($real_password != $password) die("<script>window.location.href = './index.php?wrongpassword=1'</script>"); |
| 12 | |
Andreu | 0d0f9fd | 2019-09-23 03:56:08 +0200 | [diff] [blame] | 13 | if (!isset($_POST['user']) or $_POST['user'] == '') { |
Andreu | 4b2fbd9 | 2019-09-22 22:30:25 +0200 | [diff] [blame] | 14 | die("<script>window.location.href = './index.php'</script>"); |
Andreu | a0fc827 | 2019-09-23 00:35:25 +0200 | [diff] [blame] | 15 | } else if (isset($_POST['password'])) { |
| 16 | $query_password = "SELECT password FROM users WHERE id=$user"; |
| 17 | if (query($query_password)->fetch_row()[0] != $password) { |
Andreu | 78e5bb0 | 2019-09-22 13:38:04 +0200 | [diff] [blame] | 18 | // Unset variables |
| 19 | setcookie('user', '', -1, "/"); |
| 20 | setcookie('password', '', -1, "/"); |
| 21 | |
Andreu | 4b2fbd9 | 2019-09-22 22:30:25 +0200 | [diff] [blame] | 22 | die("<script>window.location.href = './index.php?passwordchanged=1'</script>"); |
Andreu | 78e5bb0 | 2019-09-22 13:38:04 +0200 | [diff] [blame] | 23 | } |
Andreu | 09b8b05 | 2019-09-21 21:47:20 +0200 | [diff] [blame] | 24 | } |
| 25 | ?> |
Andreu | 66ad5cf | 2019-09-18 17:15:44 +0200 | [diff] [blame] | 26 | <html> |
| 27 | <head> |
| 28 | <meta charset="UTF-8"> |
Andreu | 0d0f9fd | 2019-09-23 03:56:08 +0200 | [diff] [blame] | 29 | <title>PastanagAPP</title> |
avm99963 | db383ed | 2019-09-22 02:14:42 +0200 | [diff] [blame] | 30 | |
| 31 | <meta name="viewport" content="width=device-width, initial-scale=1"> |
Andreu | 0d0f9fd | 2019-09-23 03:56:08 +0200 | [diff] [blame] | 32 | <link rel="manifest" href="https://api.myjson.com/bins/u6r41"> |
| 33 | |
| 34 | <!-- Apple web app --> |
| 35 | <link rel="apple-touch-icon" href="./bin/images/icons/icon-72x72.png"> |
| 36 | <meta name="apple-mobile-web-app-title" content="PastanagAPP"> |
| 37 | <meta name="apple-mobile-web-app-capable" content="yes"> |
| 38 | <meta name="apple-mobile-web-app-status-bar-style" content="green"> |
| 39 | |
avm99963 | db383ed | 2019-09-22 02:14:42 +0200 | [diff] [blame] | 40 | |
Andreu | 4b2fbd9 | 2019-09-22 22:30:25 +0200 | [diff] [blame] | 41 | <link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Open+Sans" /> |
| 42 | |
Andreu | 66ad5cf | 2019-09-18 17:15:44 +0200 | [diff] [blame] | 43 | <link rel="stylesheet" href="./css/basic.css" /> |
| 44 | <link rel="stylesheet" href="./css/main.css" /> |
avm99963 | db383ed | 2019-09-22 02:14:42 +0200 | [diff] [blame] | 45 | |
Andreu | 66ad5cf | 2019-09-18 17:15:44 +0200 | [diff] [blame] | 46 | <script src="https://code.jquery.com/jquery-3.4.1.min.js"></script> |
Andreu | ed8e1f9 | 2019-09-18 22:26:04 +0200 | [diff] [blame] | 47 | <script src="https://rawgit.com/notifyjs/notifyjs/master/dist/notify.js"></script> |
avm99963 | db383ed | 2019-09-22 02:14:42 +0200 | [diff] [blame] | 48 | |
Andreu | 10cb304 | 2019-09-18 19:55:36 +0200 | [diff] [blame] | 49 | <script src="./js/utils.js"></script> |
Andreu | efe66eb | 2019-09-21 18:41:49 +0200 | [diff] [blame] | 50 | <script src="./js/animations.js"></script> |
avm99963 | db383ed | 2019-09-22 02:14:42 +0200 | [diff] [blame] | 51 | |
| 52 | <?php |
Andreu | a0fc827 | 2019-09-23 00:35:25 +0200 | [diff] [blame] | 53 | $user = get_users($user); |
Andreu | 09b8b05 | 2019-09-21 21:47:20 +0200 | [diff] [blame] | 54 | $victim = get_users($user->quimata); |
Andreu | 779c3b7 | 2019-09-24 03:14:35 +0200 | [diff] [blame^] | 55 | // if ($user->mort) die("<script>window.location.href = './dead.php'</script>"); |
| 56 | |
| 57 | $bits = dec2bits($user->bits); |
| 58 | $bit_counter = 0; |
Andreu | dca79f4 | 2019-09-18 23:53:19 +0200 | [diff] [blame] | 59 | ?> |
avm99963 | db383ed | 2019-09-22 02:14:42 +0200 | [diff] [blame] | 60 | |
Andreu | 66ad5cf | 2019-09-18 17:15:44 +0200 | [diff] [blame] | 61 | <script> |
Andreu | ed49167 | 2019-09-20 13:09:18 +0200 | [diff] [blame] | 62 | let user = { |
Andreu | 9950105 | 2019-09-22 20:09:08 +0200 | [diff] [blame] | 63 | 'id': <?=(int)$user->id?>, |
| 64 | 'quimata': <?=(int)$user->quimata?>, |
| 65 | 'requested': <?=(int)$user->requested?>, |
| 66 | 'mort': <?=(int)$user->mort?>, |
avm99963 | db383ed | 2019-09-22 02:14:42 +0200 | [diff] [blame] | 67 | |
Andreu | abbcb7e | 2019-09-21 18:22:14 +0200 | [diff] [blame] | 68 | 'nom': "<?=$user->nomcomplet?>", |
Andreu | 9950105 | 2019-09-22 20:09:08 +0200 | [diff] [blame] | 69 | 'curs': <?=(int)$user->curs?>, |
| 70 | 'grau': <?=(int)$user->grau?> |
Andreu | ed49167 | 2019-09-20 13:09:18 +0200 | [diff] [blame] | 71 | }; |
Andreu | 66ad5cf | 2019-09-18 17:15:44 +0200 | [diff] [blame] | 72 | </script> |
avm99963 | db383ed | 2019-09-22 02:14:42 +0200 | [diff] [blame] | 73 | |
Andreu | 66ad5cf | 2019-09-18 17:15:44 +0200 | [diff] [blame] | 74 | </head> |
| 75 | <body> |
| 76 | <div id="outter-container"> |
| 77 | <div id="inner-container"> |
Andreu | 0d0f9fd | 2019-09-23 03:56:08 +0200 | [diff] [blame] | 78 | <a href="./index.php" class="goback">Torna a la pàgina principal</a><br /> |
Andreu | 66ad5cf | 2019-09-18 17:15:44 +0200 | [diff] [blame] | 79 | <h2>Hola <name id="user_name"><?=$user->nom()?></name>,</h2> |
avm99963 | db383ed | 2019-09-22 02:14:42 +0200 | [diff] [blame] | 80 | |
Andreu | 4b2fbd9 | 2019-09-22 22:30:25 +0200 | [diff] [blame] | 81 | <div class="formulari_contrasenya"> |
Andreu | a0fc827 | 2019-09-23 00:35:25 +0200 | [diff] [blame] | 82 | <p>Sembla que no tens clau d'accés, la gent podrà entrar al teu compte...</p> |
Andreu | 20cbd1d | 2019-09-22 00:00:57 +0200 | [diff] [blame] | 83 | <form action="./php/change_password.php" method="POST"> |
Andreu | a0fc827 | 2019-09-23 00:35:25 +0200 | [diff] [blame] | 84 | <input type="hidden" value="<?=(int)$_POST['user']?>" name="userid"> |
Andreu | 543e70c | 2019-09-22 14:08:49 +0200 | [diff] [blame] | 85 | <input type="password" placeholder="Nova clau d'accés..." name="password" /><br /> |
| 86 | <input type="password" placeholder="Repeteix la clau d'accés" name="confirmation"/><br /> |
Andreu | 4b2fbd9 | 2019-09-22 22:30:25 +0200 | [diff] [blame] | 87 | <input type="submit" value="Posar clau d'accés"> |
Andreu | 20cbd1d | 2019-09-22 00:00:57 +0200 | [diff] [blame] | 88 | </form> |
| 89 | </div> |
avm99963 | db383ed | 2019-09-22 02:14:42 +0200 | [diff] [blame] | 90 | |
| 91 | <p>La teva víctima és:</p> |
| 92 | |
Andreu | 04f79ef | 2019-09-22 18:52:19 +0200 | [diff] [blame] | 93 | <div class="victima"> |
| 94 | <table> |
| 95 | <tr> |
Andreu | 779c3b7 | 2019-09-24 03:14:35 +0200 | [diff] [blame^] | 96 | <td class="table_img"> |
| 97 | <div id="victim_img"> |
| 98 | <table cellspacing="0" cellpadding="0"> |
| 99 | <tr> |
| 100 | <td><img src="./bin/images/imgs/<?=$victim->id?>/slice_01_01.png" width="33" class="<?=(int)$bits[$bit_counter++] ? 'black' : ''?>" /></td> |
| 101 | <td><img src="./bin/images/imgs/<?=$victim->id?>/slice_01_02.png" width="33" class="<?=(int)$bits[$bit_counter++] ? 'black' : ''?>" /></td> |
| 102 | <td><img src="./bin/images/imgs/<?=$victim->id?>/slice_01_03.png" width="33" class="<?=(int)$bits[$bit_counter++] ? 'black' : ''?>" /></td> |
| 103 | </tr> |
| 104 | <tr> |
| 105 | <td><img src="./bin/images/imgs/<?=$victim->id?>/slice_02_01.png" width="33" class="<?=(int)$bits[$bit_counter++] ? 'black' : ''?>" /></td> |
| 106 | <td><img src="./bin/images/imgs/<?=$victim->id?>/slice_02_02.png" width="33" class="<?=(int)$bits[$bit_counter++] ? 'black' : ''?>" /></td> |
| 107 | <td><img src="./bin/images/imgs/<?=$victim->id?>/slice_02_03.png" width="33" class="<?=(int)$bits[$bit_counter++] ? 'black' : ''?>" /></td> |
| 108 | </tr> |
| 109 | <tr> |
| 110 | <td><img src="./bin/images/imgs/<?=$victim->id?>/slice_03_01.png" width="33" class="<?=(int)$bits[$bit_counter++] ? 'black' : ''?>" /></td> |
| 111 | <td><img src="./bin/images/imgs/<?=$victim->id?>/slice_03_02.png" width="33" class="<?=(int)$bits[$bit_counter++] ? 'black' : ''?>" /></td> |
| 112 | <td><img src="./bin/images/imgs/<?=$victim->id?>/slice_03_03.png" width="33" class="<?=(int)$bits[$bit_counter++] ? 'black' : ''?>" /></td> |
| 113 | </tr> |
| 114 | </table> |
| 115 | </div> |
| 116 | </td> |
Andreu | 0d0f9fd | 2019-09-23 03:56:08 +0200 | [diff] [blame] | 117 | <td class="table_text"> |
Andreu | 04f79ef | 2019-09-22 18:52:19 +0200 | [diff] [blame] | 118 | <div id="victim_name"><?=$victim->nomcomplet?></div> |
| 119 | <div id="victim_curs_i_grau"> |
Andreu | 4b2fbd9 | 2019-09-22 22:30:25 +0200 | [diff] [blame] | 120 | <span id="victim_curs"><?=$victim->nomcurs()?></span> |
Andreu | 04f79ef | 2019-09-22 18:52:19 +0200 | [diff] [blame] | 121 | - |
Andreu | 4b2fbd9 | 2019-09-22 22:30:25 +0200 | [diff] [blame] | 122 | <span id="victim_grau"><?=$victim->nomgrau()?></span> |
Andreu | 04f79ef | 2019-09-22 18:52:19 +0200 | [diff] [blame] | 123 | </div> |
| 124 | <div id="butons" class="options"> |
| 125 | <button id="win" onclick="js: send_request(user, 'REQ KILL');">L'he matat</button> |
| 126 | </div> |
| 127 | </td> |
| 128 | </tr> |
| 129 | </table> |
| 130 | </div> |
avm99963 | db383ed | 2019-09-22 02:14:42 +0200 | [diff] [blame] | 131 | |
| 132 | <div style="clear: both;"></div> |
Andreu | 66ad5cf | 2019-09-18 17:15:44 +0200 | [diff] [blame] | 133 | </div> |
| 134 | </div> |
avm99963 | db383ed | 2019-09-22 02:14:42 +0200 | [diff] [blame] | 135 | |
Andreu | 66ad5cf | 2019-09-18 17:15:44 +0200 | [diff] [blame] | 136 | <script> |
Andreu | dca79f4 | 2019-09-18 23:53:19 +0200 | [diff] [blame] | 137 | $(document).ready(function() { |
Andreu | abbcb7e | 2019-09-21 18:22:14 +0200 | [diff] [blame] | 138 | // Set interval of checking |
Andreu | efe66eb | 2019-09-21 18:41:49 +0200 | [diff] [blame] | 139 | let checking = setInterval(function() { update_info(user); }, 1500); |
Andreu | 96f1bcd | 2019-09-22 00:33:09 +0200 | [diff] [blame] | 140 | // Set to hidden or not the password prompt |
Andreu | 543e70c | 2019-09-22 14:08:49 +0200 | [diff] [blame] | 141 | if (<?=$user->md5password=="" ? 1 : 0?>) { |
| 142 | $.notify("No tens clau d'accés", "info"); |
| 143 | $(".formulari_contrasenya").show(); |
| 144 | } |
Andreu | dca79f4 | 2019-09-18 23:53:19 +0200 | [diff] [blame] | 145 | }); |
Andreu | 66ad5cf | 2019-09-18 17:15:44 +0200 | [diff] [blame] | 146 | </script> |
| 147 | </body> |
| 148 | </html> |