summaryrefslogtreecommitdiff
path: root/tpl/general/top.php
blob: 28a9658dd2abe33df22795b828b2f5d5de19bc02 (plain) (blame)
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
<?php
global $user, $apps;	//These might be hidden because this page is called from sql();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
	<head>
		<meta http-equiv="content-type" content="text/html; charset=utf-8" />
		<title><?php echo $title; ?></title>
		<link href="design/style.css" rel="stylesheet" type="text/css" media="screen" />
	</head>

	<body>
		<div class="menu">
			<div class="right">
			<?php
if ($user['id'] == 0) {
	echo '<a href="new-account">Register</a><a href="?login">Login</a>';
} else {
	echo '<a href="user-notes-' . $user['id'] . '">My notebook</a><a href="?logout">Logout (' . $user['name'] . ')</a>';
}
?>
			</div>
			<div class="left">
				<a href="notes">Notebooks</a>
			<?php
if ($user['id'] != 0) {
	echo '<a href="image">Uploaded images</a><a href="study">My studies</a>';
} else {
	if ($user['priv'] >= $apps['image']['upload']) {
		echo '<a href="upload-image">Upload image</a>';
	}
	echo '<a href="deck">Study decks</a>';
}
?>
			</div>
			<div style="clear: both;"></div>
		</div>

		<div class="contents-right">

		<h1><?php echo $title; ?></h1>

<?php
if (isset($message)) echo '<div class="message">' . $message . "</div>\n";
if (isset($error)) echo '<div class="error">' . $error . "</div>\n";