This repository has been 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 pathworld.php
73 lines (52 loc) · 2.01 KB
/
world.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
71
72
73
<?php
session_start();
// Disable errors
//error_reporting(E_ERROR);
?>
<!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 -->
<link href="assets/DataTables/datatables.min.css" rel="stylesheet"/>
</head>
<body>
<?php include_once('template/navbar.php'); ?>
<?php include_once('template/world/hero.php'); ?>
<div class="container is-max-widescreen">
<div class="box no-top-radius">
<p class="help is-danger"></p>
<!-- 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'); ?>
<section class="section pt-5 pb-3">
<?php include_once('template/world/tabs.php'); ?>
<?php include_once('template/world/tables.php'); ?>
</section>
</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 src="assets/js/ajax.js"></script>
<!-- jQuery DataTables -->
<script src="assets/DataTables/datatables.min.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>