-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsample.php
More file actions
34 lines (31 loc) · 867 Bytes
/
Copy pathsample.php
File metadata and controls
34 lines (31 loc) · 867 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
32
33
34
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="css/header.css">
</head>
<body>
<!-- Header Section -->
<div id="header">
<img id="logo" src="images/logo.png" onclick="ClickOnHome()">
<table id="Button">
<tr><td class="clickButton" onclick="Learn()">LEARN</td>
<td class="clickButton" onclick="Practice()">PRACTICE</td>
<td class="clickButton">CONTESTS</td>
<td class="clickButton">JOBS</td></tr>
</table>
<?php
session_start();
if(isset($_SESSION['username']))
{
echo '<div id="NameUser">'.$_SESSION['username'].'      <a href="logout.php">Logout</a><a href="profile.php">   Profile</a></div>';
}
else
{
echo '<div id="loginButton" onclick="ClickOnLogin()">LOGIN</div>';
}
?>
</div>
<script type="text/javascript" src="js/onclick.js"></script>
</body>
</html>