-
Notifications
You must be signed in to change notification settings - Fork 1
/
matches.php
executable file
·59 lines (45 loc) · 1.49 KB
/
matches.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
<!DOCTYPE html>
<html>
<head>
<title>Truman Chess</title>
<meta charset="utf-8"/>
<link rel="stylesheet" type="text/css" href="css-hw2.css" title="default style">
<style type="text/css"></style>
</head>
<body id="matchesPage">
<div id="wrapper">
<div id="wrapperHeader">
<div id="header">
<img src="images/header.jpg" alt="logo">
</div>
</div>
<div id="masthead">
<div id="navContainer">
<div id="navigation">
<ul>
<li id="homePageLink"><a href="index.html">Home</a></li>
<li id="playPageLink"><a href="play.php">Play</a></li>
<li id="learnPageLink"><a href="learn.html">Learn</a></li>
<li id="matchesPageLink"><a href="matches.php">Game database</a></li>
<li id="aboutPageLink"><a href="about.html">About</a></li>
<li id="logoutPageLink"><a href="logout.php">Logout</a></li>
</ul>
</div>
</div>
</div>
<div id="content">
<h2>Database!</h2>
<em>Coming soon to a location near you!</em>
<p>
This page will later contains a chess games that a player had played previously, famous chess games by grandmasters, etc.
</p>
<p>
Upload chess games for sharing purposes. (File/game uploading coming soon!)
</p>
<h2>List of games</h2>
<?php include_once("phps/redirectToLogin.php");?>
<?php include_once("phps/getmatches.php");?>
</div>
</div>
</body>
</html>