blob: 955e6e9b68f7fb6a797adf4e256f240494efc218 [file] [log] [blame]
Andreu78e5bb02019-09-22 13:38:04 +02001<?php
2 require './credentials.php';
3 require './php/utils.php';
4
Andreua0fc8272019-09-23 00:35:25 +02005 $user = (int)$_POST['user'];
6 $password = $_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
13 if (!isset($_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">
29 <title>Pàgina de l'usuari</title>
avm99963db383ed2019-09-22 02:14:42 +020030
31 <meta name="viewport" content="width=device-width, initial-scale=1">
32
Andreu4b2fbd92019-09-22 22:30:25 +020033 <link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Open+Sans" />
34
Andreu66ad5cf2019-09-18 17:15:44 +020035 <link rel="stylesheet" href="./css/basic.css" />
36 <link rel="stylesheet" href="./css/main.css" />
avm99963db383ed2019-09-22 02:14:42 +020037
Andreu66ad5cf2019-09-18 17:15:44 +020038 <script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
Andreued8e1f92019-09-18 22:26:04 +020039 <script src="https://rawgit.com/notifyjs/notifyjs/master/dist/notify.js"></script>
avm99963db383ed2019-09-22 02:14:42 +020040
Andreu10cb3042019-09-18 19:55:36 +020041 <script src="./js/utils.js"></script>
Andreuefe66eb2019-09-21 18:41:49 +020042 <script src="./js/animations.js"></script>
avm99963db383ed2019-09-22 02:14:42 +020043
44 <?php
Andreua0fc8272019-09-23 00:35:25 +020045 $user = get_users($user);
Andreu09b8b052019-09-21 21:47:20 +020046 $victim = get_users($user->quimata);
Andreu4b2fbd92019-09-22 22:30:25 +020047 if ($user->mort) die("<script>window.location.href = './dead.php'</script>");
Andreudca79f42019-09-18 23:53:19 +020048 ?>
avm99963db383ed2019-09-22 02:14:42 +020049
Andreu66ad5cf2019-09-18 17:15:44 +020050 <script>
Andreued491672019-09-20 13:09:18 +020051 let user = {
Andreu99501052019-09-22 20:09:08 +020052 'id': <?=(int)$user->id?>,
53 'quimata': <?=(int)$user->quimata?>,
54 'requested': <?=(int)$user->requested?>,
55 'mort': <?=(int)$user->mort?>,
avm99963db383ed2019-09-22 02:14:42 +020056
Andreuabbcb7e2019-09-21 18:22:14 +020057 'nom': "<?=$user->nomcomplet?>",
Andreu99501052019-09-22 20:09:08 +020058 'curs': <?=(int)$user->curs?>,
59 'grau': <?=(int)$user->grau?>
Andreued491672019-09-20 13:09:18 +020060 };
Andreu66ad5cf2019-09-18 17:15:44 +020061 </script>
avm99963db383ed2019-09-22 02:14:42 +020062
Andreu66ad5cf2019-09-18 17:15:44 +020063 </head>
64 <body>
65 <div id="outter-container">
66 <div id="inner-container">
67 <h2>Hola <name id="user_name"><?=$user->nom()?></name>,</h2>
avm99963db383ed2019-09-22 02:14:42 +020068
Andreu4b2fbd92019-09-22 22:30:25 +020069 <div class="formulari_contrasenya">
Andreua0fc8272019-09-23 00:35:25 +020070 <p>Sembla que no tens clau d'accés, la gent podrà entrar al teu compte...</p>
Andreu20cbd1d2019-09-22 00:00:57 +020071 <form action="./php/change_password.php" method="POST">
Andreua0fc8272019-09-23 00:35:25 +020072 <input type="hidden" value="<?=(int)$_POST['user']?>" name="userid">
Andreu543e70c2019-09-22 14:08:49 +020073 <input type="password" placeholder="Nova clau d'accés..." name="password" /><br />
74 <input type="password" placeholder="Repeteix la clau d'accés" name="confirmation"/><br />
Andreu4b2fbd92019-09-22 22:30:25 +020075 <input type="submit" value="Posar clau d'accés">
Andreu20cbd1d2019-09-22 00:00:57 +020076 </form>
77 </div>
avm99963db383ed2019-09-22 02:14:42 +020078
79 <p>La teva víctima és:</p>
80
Andreu04f79ef2019-09-22 18:52:19 +020081 <div class="victima">
82 <table>
83 <tr>
84 <td><img id="victim_img" src="https://picsum.photos/id/<?=$victim->id?>/200/200" /></td>
85 <td>
86 <div id="victim_name"><?=$victim->nomcomplet?></div>
87 <div id="victim_curs_i_grau">
Andreu4b2fbd92019-09-22 22:30:25 +020088 <span id="victim_curs"><?=$victim->nomcurs()?></span>
Andreu04f79ef2019-09-22 18:52:19 +020089 -
Andreu4b2fbd92019-09-22 22:30:25 +020090 <span id="victim_grau"><?=$victim->nomgrau()?></span>
Andreu04f79ef2019-09-22 18:52:19 +020091 </div>
92 <div id="butons" class="options">
93 <button id="win" onclick="js: send_request(user, 'REQ KILL');">L'he matat</button>
94 </div>
95 </td>
96 </tr>
97 </table>
98 </div>
avm99963db383ed2019-09-22 02:14:42 +020099
100 <div style="clear: both;"></div>
Andreu66ad5cf2019-09-18 17:15:44 +0200101 </div>
102 </div>
avm99963db383ed2019-09-22 02:14:42 +0200103
Andreu66ad5cf2019-09-18 17:15:44 +0200104 <script>
Andreudca79f42019-09-18 23:53:19 +0200105 $(document).ready(function() {
Andreuabbcb7e2019-09-21 18:22:14 +0200106 // Set interval of checking
Andreuefe66eb2019-09-21 18:41:49 +0200107 let checking = setInterval(function() { update_info(user); }, 1500);
Andreu96f1bcd2019-09-22 00:33:09 +0200108 // Set to hidden or not the password prompt
Andreu543e70c2019-09-22 14:08:49 +0200109 if (<?=$user->md5password=="" ? 1 : 0?>) {
110 $.notify("No tens clau d'accés", "info");
111 $(".formulari_contrasenya").show();
112 }
113
114 // Notify of messages
115 if (getUrlParameter("wrongconfirmation")) read_message("Les contrasenyes no coincideixen", "error");
116 if (getUrlParameter("errordb")) read_message("Hi ha hagut un problema a la base de dades, torna-ho a intentar", "error");
117 if (getUrlParameter("successpassword")) read_message("La teva clau d'accés s'ha guardat", "success");
Andreudca79f42019-09-18 23:53:19 +0200118 });
Andreu66ad5cf2019-09-18 17:15:44 +0200119 </script>
120 </body>
121</html>