-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
63 lines (51 loc) · 1.4 KB
/
Copy pathindex.php
File metadata and controls
63 lines (51 loc) · 1.4 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
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<title>XMath</title>
<link rel="icon" type="image/x-icon" href="Assets/favicon.ico">
<link rel="stylesheet" href="App.css">
</head>
<body>
<?php
session_start();
?>
<div id="nav">
<div id ="menu">
<p>Nowa gra</p>
<p>Wybierz dział</p>
<p>Challenge</p>
<p>Ustawienia</p>
<p>O nas</p>
</div>
<div id="user">
<ol>
<?php
if (isset($_SESSION['username'])) {
echo '<li><a href="profile.php">'.$_SESSION['username'].'</a>';
echo "<ul>";
echo '<li><a href="logout.php">Wyloguj</a></li>';
echo "</ul></li></ol>";
} else {
echo '<h5> <a href="login.php">konto uzytokownika</a></h5>';
}
?>
</div>
</div>
<div id="main">
<div id="ranking">
<h5>ranking</h5>
</div>
<div id="task">
<h5>ranking</h5>
</div>
<div id="control">
<p>Wyzwij znajomego</p>
<p>Przetrwanie</p>
<p>3 życia</p>
<p>Poziom trudności</p>
<p>Wyświetl odpowiedź</p>
</div>
</div>
</body>
</html>