This repository was archived by the owner on Mar 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplayers.php
70 lines (50 loc) · 1.79 KB
/
players.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
58
59
60
61
62
63
64
65
66
67
68
69
70
<?php
session_start();
// Disable errors
//error_reporting(E_ERROR);
require_once('./class/autoload.php'); // API
use TMRank\Utils;
use TMRank\Database;
$utils = new Utils();
$db = new Database();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>TMRank</title>
<?php include_once('template/head_styles.php'); ?>
<!-- Page-specific styles -->
<!-- STYLES -->
</head>
<body>
<?php include_once('template/navbar.php'); ?>
<?php include_once('template/players/hero.php'); ?>
<div class="container is-max-widescreen">
<div class="box no-top-radius">
<!-- Error for disabled JavaScript -->
<noscript>
<section class="section pt-0 pb-5 mt-0 mb-0">
<article class="message is-danger">
<div class="message-header">
<p>An error has occurred</p>
</div>
<div class="message-body">
<p>This page requires JavaScript to function properly. Please enable JavaScript in your browser settings and refresh the page.</p>
</div>
</article>
</section>
</noscript>
<?php include_once('template/login_form.php'); ?>
<?php include_once('template/players/content.php'); ?>
</div>
</div>
<?php include_once('template/footer.php'); ?>
<?php include_once('template/body_scripts.php'); ?>
<!-- Additional scripts below this line -->
<!-- jQuery AJAX -->
<script src="assets/jquery/jquery-3.3.1.min.js"></script>
<script defer src="assets/js/ajax.js"></script>
</body>
</html>