-
Notifications
You must be signed in to change notification settings - Fork 9
/
findsession.php
57 lines (52 loc) · 2.48 KB
/
findsession.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
require 'api/local/config.inc.php';
require 'api/common.inc.php';
$user_id = 0;
if (!$ALLOWMULTI) {
session_readonly();
$user_id = $_SESSION['id'];
}
?><!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>You Don't Know Jack® ALPHA FR</title>
<link href="css/ydkj.css" rel="stylesheet"/>
<script src="js/HackTimer.min.js" type="text/javascript"></script>
<script src="js/jquery-3.5.1.min.js" type="text/javascript"></script>
<script type="text/javascript">
(function(){
jQuery(document).ready(function() {
var findSession = function() {
jQuery.ajax({
url: 'api/listsessions.php',
type: 'get',
dataType: 'json',
success: function (data, status, xhr) {
if (data.found == '1') {
window.location.href = './joinsession.php';
} else {
window.setTimeout(findSession,3000);
}
}
});
};
findSession();
})})();
</script>
</head>
<body style="background-color:#000;color:#FFF;font-family:JackCondensed, sans-serif;margin:0;padding:0;border:0">
<div style="text-align:center;font-size:80px;margin-top:100px;line-height:0"><div style="">YOU DON’T KNOW</div>
<div style="font-size:350%;line-height:95%">JACK<span style="font-size:10%; vertical-align:top; line-height:400%">®</span></div></div>
<div style="border:#669 1px solid; background-color:#336;color:#FFF;padding:10px;margin:15px auto;font-family:JackCondensed;font-size:18px;width:640px">
<p style="text-align:center;font-size:28px;font-weight:bold;margin:10px 0 30px 0;color:#FF0">Recherche d'une partie publique...</p>
<div>
Si vous ne trouvez pas rapidement une partie publique, n'hésitez pas à en créer une !
<p style="text-align: center"><a href="joinsession.php?public=1" style="color:#F90">Créer une partie publique</a></p>
<?php if ((!$ALLOWMULTI) && ($user_id == 0)) { ?>(Un compte utilisateur est requis, écrivez à <a href="mailto:[email protected]" style="color:#F90">[email protected]</a> pour en obtenir un)<?php } ?>
</div>
</div>
<div style="margin:20px auto 10px auto; text-align:center"><a href="./" style="color:#666">Retour à l'accueil</a></div>
<?php require 'analytics.php'; ?>
</body>
</html>