blob: 294a6e5f4cc507d847eaf64fa41ec4ea138ef8b9 [file] [log] [blame]
Andreu03d030d2019-09-25 21:52:01 +02001<?php
Adrià Vilanova Martínezd3394e12022-11-19 15:45:58 +01002 date_default_timezone_set("Europe/Madrid");
Andreu03d030d2019-09-25 21:52:01 +02003
Andreub78c8792019-09-22 14:51:13 +02004 // Forget cookies
5 setcookie('user', '', -1, "/");
6 setcookie('password', '', -1, "/");
Andreu4ed74962019-09-22 00:06:15 +02007?>
Andreua0fc8272019-09-23 00:35:25 +02008
9<html>
10 <head>
11 <meta charset="UTF-8">
Andreu0d0f9fd2019-09-23 03:56:08 +020012 <title>PastanagAPP - Mort/a</title>
Andreua0fc8272019-09-23 00:35:25 +020013
14 <meta name="viewport" content="width=device-width, initial-scale=1">
15
16 <link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Open+Sans" />
17 <link rel="stylesheet" href="./css/basic.css" />
18
19 <script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
20 <script src="https://rawgit.com/notifyjs/notifyjs/master/dist/notify.js"></script>
21
22 <script src="./js/utils.js"></script>
23 </head>
24 <body>
25 <div id="outter-container">
26 <div id="inner-container">
Andreu0d0f9fd2019-09-23 03:56:08 +020027 <h1>Estàs mort/a!</h1>
Andreua0fc8272019-09-23 00:35:25 +020028 <p>Torna a la pàgina principal.</p>
Andreu03d030d2019-09-25 21:52:01 +020029 <a href="./">Go back</a>
Andreu20af6c22019-09-24 18:33:50 +020030 <a href="./ranking.php">Anar al rànquing</a>
Andreua0fc8272019-09-23 00:35:25 +020031 </div>
32 </div>
33 </body>
34</html>
35