-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathresult.php
More file actions
88 lines (82 loc) · 4.65 KB
/
result.php
File metadata and controls
88 lines (82 loc) · 4.65 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css">
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.19/css/jquery.dataTables.min.css">
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/buttons/1.5.6/css/buttons.dataTables.min.css">
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/responsive/2.2.3/css/responsive.dataTables.min.css">
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/rowgroup/1.1.1/css/rowGroup.dataTables.min.css">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/open-iconic/1.1.1/font/css/open-iconic-bootstrap.css">
<link href='https://fonts.googleapis.com/css?family=Syncopate:400,700' rel='stylesheet' type='text/css'>
<link rel="canonical" href="https://epee.me/result.php?r=<?php echo htmlspecialchars((int)$_GET['r']); ?>">
<meta name="description" content="Results & ranking data from LPJS, Elite Epee, BYC, EYC and other UK youth, cadet & junior fencing competitions">
<meta name="keywords" content="fencing, fence, fencer, epee, epeeist, results, ranking, leon paul, elite epee, britih fencing, england fencing, britishfencing, database, data, best, top, clubs, cadet, junior, youth">
<meta name="author" content="Dan Kew">
<link href="css/common.css" rel="stylesheet">
<link href="css/flag-css.min.css" rel="stylesheet">
<title>epee.me - Competition Result</title>
<style>
</style>
</head>
<body>
<?php include('inc/header.php') ?>
<main role="main">
<div class="album py-4 bg-light">
<div class="container">
<div class="row no-gutters">
<div class="no-gutters col-12 dataTables_length" style="padding-bottom:10px;">
<div class="card nif-box float-right text-center" style="display:none;">
<div class="card-header">NIF</div>
<div class="card-body"><span class="competition-nif"></span></div>
</div>
<div class="competition-banner">
<h5 class="competition-header"></h5>
<p class="competition-date"></p>
</div>
</div>
</div>
<div class="loading" style="display:none; padding:0px 12px;">
<div class="d-flex align-items-center"><strong>Loading...</strong><div class="spinner-border ml-auto" role="status" aria-hidden="true"></div></div>
</div>
<div class="row no-gutters">
<div class="index col-sm-12"></div>
</div>
<div class="row no-gutters">
<div class="no-gutters col-12 dataTables_length" style="padding-bottom:10px; padding-top:60px;">
<div class="subBar" style="margin-bottom:20px;">
<h6 class="competition-winners"></h6>
</div>
</div>
<div class="index3 col-sm-12" style="display:none;"></div>
</div>
<div class="row no-gutters">
<div class="no-gutters col-12 dataTables_length" style="padding-bottom:10px; padding-top:60px;">
<div class="subBar" style="margin-bottom:20px;">
<h6 class="competition-overview"></h6>
</div>
</div>
<div id="chartdiv"></div>
</div>
<div class="row no-gutters">
<div class="no-gutters col-12 dataTables_length" style="padding-bottom:10px; padding-top:60px;">
<div class="subBar" style="margin-bottom:20px;">
<h6 class="competition-history"></h6>
</div>
</div>
<div class="index2 col-sm-12" style="display:none; "></div>
</div>
</div>
</div>
</main>
<?php include('inc/footer.php') ?>
<script src="scripts/result.js"></script>
<script>
$(document).ready(function() {
result.Display(<?php echo htmlspecialchars((int)$_GET['r']); ?>);
});
</script>
</body>
</html>