forked from prakharsingh1312/cusiege
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrules.php
More file actions
31 lines (26 loc) · 836 Bytes
/
Copy pathrules.php
File metadata and controls
31 lines (26 loc) · 836 Bytes
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
<?php
session_start();
if((!isset($_SESSION['username'])))
{
header("location:index");
}
?>
<html>
<head>
<link rel='icon' href='icon/favicon.ico' type='image/x-icon'>
<title>Rules</title>
<link rel="stylesheet" href="Assets/css/style.css">
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed" rel="stylesheet">
<link rel='icon' href='icon/favicon.ico' type='image/x-icon'>
</head>
<body>
<ul class="sub_navbarul">
<li class="sub_navbarli"><a href="rules" active>Rules</a></li>
<li class="sub_navbarli"><a href="play">Play</a></li>
<li class="sub_navbarli"><a href="leaderboards">Leaderboards</a></li>
</ul>
<div id="wrapperlead" class='divlead'> <div class='divlead'>
<center><h1>Rules will go here.</h1></center>
</div></div>
</body>
</html>