| <?php |
| require './credentials.php'; |
| require './php/utils.php'; |
| require_once('./php/security.php'); |
| |
| date_default_timezone_set("Europe/Madrid"); |
| |
| Security::checkIsSignedIn(); |
| ?> |
| <html> |
| <head> |
| <meta charset="UTF-8"> |
| <title>PastanagAPP</title> |
| |
| <meta name="viewport" content="width=device-width, initial-scale=1"> |
| <link rel="manifest" href="/bin/manifest.json"> |
| |
| <!-- Apple web app --> |
| <link rel="apple-touch-icon" href="./bin/images/icons/icon-72x72.png"> |
| <meta name="apple-mobile-web-app-title" content="PastanagAPP"> |
| <meta name="apple-mobile-web-app-capable" content="yes"> |
| <meta name="apple-mobile-web-app-status-bar-style" content="green"> |
| |
| |
| <link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Open+Sans" /> |
| |
| <link rel="stylesheet" href="./css/basic.css" /> |
| <link rel="stylesheet" href="./css/main.css" /> |
| |
| <script src="https://code.jquery.com/jquery-3.4.1.min.js"></script> |
| <script src="https://rawgit.com/notifyjs/notifyjs/master/dist/notify.js"></script> |
| |
| <script src="./js/utils.js"></script> |
| <script src="./js/animations.js"></script> |
| |
| <?php |
| $user = get_users($_SESSION["id"]); |
| $victim = get_users($user->quimata); |
| if ($user->mort) die("<script>window.location.href = './dead.php'</script>"); |
| |
| // @TODO: Reenable photos |
| /*$bits = dec2bits($user->bits); |
| $bit_counter = 0;*/ |
| ?> |
| |
| <script> |
| let user = { |
| 'id': <?=(int)$user->id?>, |
| 'quimata': <?=(int)$user->quimata?>, |
| 'requested': <?=(int)$user->requested?>, |
| 'mort': <?=(int)$user->mort?>, |
| |
| 'nom': "<?=Security::htmlsafe($user->nomcomplet)?>", |
| 'curs': <?=(int)$user->curs?>, |
| 'grau': <?=(int)$user->grau?> |
| }; |
| </script> |
| |
| </head> |
| <body> |
| <div id="outter-container"> |
| <div id="inner-container"> |
| <a href="/php/logout.php" class="goback">Tancar sessió</a><br /> |
| <h2>Hola <name id="user_name"><?=Security::htmlsafe($user->nom())?></name>,</h2> |
| |
| <div class="formulari_contrasenya"> |
| <p>Sembla que no tens clau d'accés, la gent podrà entrar al teu compte...</p> |
| <form action="./php/change_password.php" method="POST"> |
| <input type="hidden" value="<?=(int)$user->id?>" name="userid"> |
| <input type="password" placeholder="Nova clau d'accés..." name="password" /><br /> |
| <input type="password" placeholder="Repeteix la clau d'accés" name="confirmation"/><br /> |
| <input type="submit" value="Posar clau d'accés"> |
| </form> |
| </div> |
| |
| <p>La teva víctima és:</p> |
| |
| <div class="victima"> |
| <table> |
| <tr> |
| <?php |
| // @TODO: Reenable photos |
| /* |
| <td class="table_img"> |
| <div id="victim_img"> |
| <div class="grid-container"> |
| <div class="grid-item <?=(int)$bits[$bit_counter++] ? 'black' : ''?>"></div> |
| <div class="grid-item <?=(int)$bits[$bit_counter++] ? 'black' : ''?>"></div> |
| <div class="grid-item <?=(int)$bits[$bit_counter++] ? 'black' : ''?>"></div> |
| <div class="grid-item <?=(int)$bits[$bit_counter++] ? 'black' : ''?>"></div> |
| <div class="grid-item <?=(int)$bits[$bit_counter++] ? 'black' : ''?>"></div> |
| <div class="grid-item <?=(int)$bits[$bit_counter++] ? 'black' : ''?>"></div> |
| <div class="grid-item <?=(int)$bits[$bit_counter++] ? 'black' : ''?>"></div> |
| <div class="grid-item <?=(int)$bits[$bit_counter++] ? 'black' : ''?>"></div> |
| <div class="grid-item <?=(int)$bits[$bit_counter++] ? 'black' : ''?>"></div> |
| </div> |
| </div> |
| </td> |
| */ |
| ?> |
| <td class="table_text"> |
| <div id="victim_name"><?=Security::htmlsafe($victim->nomcomplet)?></div> |
| <div id="victim_curs_i_grau"> |
| <span id="victim_curs"><?=Security::htmlsafe($victim->nomcurs())?></span> |
| - |
| <span id="victim_grau"><?=Security::htmlsafe($victim->nomgrau())?></span> |
| </div> |
| <div id="butons" class="options"> |
| <button id="win" onclick="js: send_request(user, 'REQ KILL');">L'he matat</button> |
| </div> |
| </td> |
| </tr> |
| </table> |
| </div> |
| |
| <?php |
| $query_seen_victim = "SELECT COUNT(*) FROM missatges WHERE `seen` = 0 AND (`receiver_id` = " . (int)$user->id . " AND `sender_id` = " . (int)$user->quimata . ")"; |
| $query_seen_killer = "SELECT COUNT(*) FROM missatges WHERE `seen` = 0 AND (`receiver_id` = " . (int)$user->id . " AND `sender_id` != " . (int)$user->quimata . ")"; |
| ?> |
| |
| <div> |
| <p>Podeu posar aquesta pàgina com a icona apretant el botó de "Add to Home Screen" del vostre navegador.</p> |
| <a href="./ranking.php">Anar al rànquing</a><br /> |
| <a href="./victim-chat.php">Xatejar amb la teva víctima (<?= query($query_seen_victim)->fetch_row()[0] ?>)</a><br /> |
| <a href="./killer-chat.php">Xatejar amb el teu assassí (<?= query($query_seen_killer)->fetch_row()[0] ?>)</a> |
| </div> |
| </div> |
| </div> |
| |
| <script> |
| $(document).ready(function() { |
| // Set interval of checking |
| update_info(user); |
| // Set to hidden or not the password prompt |
| if (<?=$user->md5password=="" ? 1 : 0?>) { |
| $.notify("No tens clau d'accés", "info"); |
| $(".formulari_contrasenya").show(); |
| } |
| // Notify of messages |
| if (getUrlParameter("wrongconfirmation")) read_message("Les contrasenyes no coincideixen", "error"); |
| if (getUrlParameter("errordb")) read_message("Hi ha hagut un problema a la base de dades, torna-ho a intentar", "error"); |
| if (getUrlParameter("successpassword")) read_message("La teva clau d'accés s'ha guardat", "success"); |
| }); |
| </script> |
| </body> |
| </html> |