blob: bb2ffbff20d22c4595174f159e7721f6b51b47eb [file] [log] [blame]
Andreu78e5bb02019-09-22 13:38:04 +02001<?php
2 require './credentials.php';
3 require './php/utils.php';
Andreu0d0f9fd2019-09-23 03:56:08 +02004
Andreua0fc8272019-09-23 00:35:25 +02005 $user = (int)$_POST['user'];
Andreu0d0f9fd2019-09-23 03:56:08 +02006 $password = isset($_POST['password']) ? md5($_POST['password']) : '';
Andreu4b2fbd92019-09-22 22:30:25 +02007
Andreua0fc8272019-09-23 00:35:25 +02008 // 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
Andreu0d0f9fd2019-09-23 03:56:08 +020013 if (!isset($_POST['user']) or $_POST['user'] == '') {
Andreu4b2fbd92019-09-22 22:30:25 +020014 die("<script>window.location.href = './index.php'</script>");
Andreua0fc8272019-09-23 00:35:25 +020015 } else if (isset($_POST['password'])) {
16 $query_password = "SELECT password FROM users WHERE id=$user";
17 if (query($query_password)->fetch_row()[0] != $password) {
Andreu78e5bb02019-09-22 13:38:04 +020018 // Unset variables
19 setcookie('user', '', -1, "/");
20 setcookie('password', '', -1, "/");
21
Andreu4b2fbd92019-09-22 22:30:25 +020022 die("<script>window.location.href = './index.php?passwordchanged=1'</script>");
Andreu78e5bb02019-09-22 13:38:04 +020023 }
Andreu09b8b052019-09-21 21:47:20 +020024 }
25?>
Andreu66ad5cf2019-09-18 17:15:44 +020026<html>
27 <head>
28 <meta charset="UTF-8">
Andreu0d0f9fd2019-09-23 03:56:08 +020029 <title>PastanagAPP</title>
avm99963db383ed2019-09-22 02:14:42 +020030
31 <meta name="viewport" content="width=device-width, initial-scale=1">
Andreu0d0f9fd2019-09-23 03:56:08 +020032 <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
avm99963db383ed2019-09-22 02:14:42 +020040
Andreu4b2fbd92019-09-22 22:30:25 +020041 <link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Open+Sans" />
42
Andreu66ad5cf2019-09-18 17:15:44 +020043 <link rel="stylesheet" href="./css/basic.css" />
44 <link rel="stylesheet" href="./css/main.css" />
avm99963db383ed2019-09-22 02:14:42 +020045
Andreu66ad5cf2019-09-18 17:15:44 +020046 <script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
Andreued8e1f92019-09-18 22:26:04 +020047 <script src="https://rawgit.com/notifyjs/notifyjs/master/dist/notify.js"></script>
avm99963db383ed2019-09-22 02:14:42 +020048
Andreu10cb3042019-09-18 19:55:36 +020049 <script src="./js/utils.js"></script>
Andreuefe66eb2019-09-21 18:41:49 +020050 <script src="./js/animations.js"></script>
avm99963db383ed2019-09-22 02:14:42 +020051
52 <?php
Andreua0fc8272019-09-23 00:35:25 +020053 $user = get_users($user);
Andreu09b8b052019-09-21 21:47:20 +020054 $victim = get_users($user->quimata);
Andreu4b2fbd92019-09-22 22:30:25 +020055 if ($user->mort) die("<script>window.location.href = './dead.php'</script>");
Andreudca79f42019-09-18 23:53:19 +020056 ?>
avm99963db383ed2019-09-22 02:14:42 +020057
Andreu66ad5cf2019-09-18 17:15:44 +020058 <script>
Andreued491672019-09-20 13:09:18 +020059 let user = {
Andreu99501052019-09-22 20:09:08 +020060 'id': <?=(int)$user->id?>,
61 'quimata': <?=(int)$user->quimata?>,
62 'requested': <?=(int)$user->requested?>,
63 'mort': <?=(int)$user->mort?>,
avm99963db383ed2019-09-22 02:14:42 +020064
Andreuabbcb7e2019-09-21 18:22:14 +020065 'nom': "<?=$user->nomcomplet?>",
Andreu99501052019-09-22 20:09:08 +020066 'curs': <?=(int)$user->curs?>,
67 'grau': <?=(int)$user->grau?>
Andreued491672019-09-20 13:09:18 +020068 };
Andreu66ad5cf2019-09-18 17:15:44 +020069 </script>
avm99963db383ed2019-09-22 02:14:42 +020070
Andreu66ad5cf2019-09-18 17:15:44 +020071 </head>
72 <body>
73 <div id="outter-container">
74 <div id="inner-container">
Andreu0d0f9fd2019-09-23 03:56:08 +020075 <a href="./index.php" class="goback">Torna a la pàgina principal</a><br />
Andreu66ad5cf2019-09-18 17:15:44 +020076 <h2>Hola <name id="user_name"><?=$user->nom()?></name>,</h2>
avm99963db383ed2019-09-22 02:14:42 +020077
Andreu4b2fbd92019-09-22 22:30:25 +020078 <div class="formulari_contrasenya">
Andreua0fc8272019-09-23 00:35:25 +020079 <p>Sembla que no tens clau d'accés, la gent podrà entrar al teu compte...</p>
Andreu20cbd1d2019-09-22 00:00:57 +020080 <form action="./php/change_password.php" method="POST">
Andreua0fc8272019-09-23 00:35:25 +020081 <input type="hidden" value="<?=(int)$_POST['user']?>" name="userid">
Andreu543e70c2019-09-22 14:08:49 +020082 <input type="password" placeholder="Nova clau d'accés..." name="password" /><br />
83 <input type="password" placeholder="Repeteix la clau d'accés" name="confirmation"/><br />
Andreu4b2fbd92019-09-22 22:30:25 +020084 <input type="submit" value="Posar clau d'accés">
Andreu20cbd1d2019-09-22 00:00:57 +020085 </form>
86 </div>
avm99963db383ed2019-09-22 02:14:42 +020087
88 <p>La teva víctima és:</p>
89
Andreu04f79ef2019-09-22 18:52:19 +020090 <div class="victima">
91 <table>
92 <tr>
Andreu0d0f9fd2019-09-23 03:56:08 +020093 <td class="table_img"><img id="victim_img" src="https://picsum.photos/id/<?=$victim->id?>/200/200" /></td>
94 <td class="table_text">
Andreu04f79ef2019-09-22 18:52:19 +020095 <div id="victim_name"><?=$victim->nomcomplet?></div>
96 <div id="victim_curs_i_grau">
Andreu4b2fbd92019-09-22 22:30:25 +020097 <span id="victim_curs"><?=$victim->nomcurs()?></span>
Andreu04f79ef2019-09-22 18:52:19 +020098 -
Andreu4b2fbd92019-09-22 22:30:25 +020099 <span id="victim_grau"><?=$victim->nomgrau()?></span>
Andreu04f79ef2019-09-22 18:52:19 +0200100 </div>
101 <div id="butons" class="options">
102 <button id="win" onclick="js: send_request(user, 'REQ KILL');">L'he matat</button>
103 </div>
104 </td>
105 </tr>
106 </table>
107 </div>
avm99963db383ed2019-09-22 02:14:42 +0200108
109 <div style="clear: both;"></div>
Andreu66ad5cf2019-09-18 17:15:44 +0200110 </div>
111 </div>
avm99963db383ed2019-09-22 02:14:42 +0200112
Andreu66ad5cf2019-09-18 17:15:44 +0200113 <script>
Andreudca79f42019-09-18 23:53:19 +0200114 $(document).ready(function() {
Andreuabbcb7e2019-09-21 18:22:14 +0200115 // Set interval of checking
Andreuefe66eb2019-09-21 18:41:49 +0200116 let checking = setInterval(function() { update_info(user); }, 1500);
Andreu96f1bcd2019-09-22 00:33:09 +0200117 // Set to hidden or not the password prompt
Andreu543e70c2019-09-22 14:08:49 +0200118 if (<?=$user->md5password=="" ? 1 : 0?>) {
119 $.notify("No tens clau d'accés", "info");
120 $(".formulari_contrasenya").show();
121 }
Andreudca79f42019-09-18 23:53:19 +0200122 });
Andreu66ad5cf2019-09-18 17:15:44 +0200123 </script>
124 </body>
125</html>