1
|
<?php
|
2
|
$do_slovniku = "Do slovníku";
|
3
|
|
4
|
$do_administrace = "Do administrace";
|
5
|
|
6
|
if (!Empty($n) && !Empty($p)):
|
7
|
if (!Empty($send) && $send == $do_slovniku) {
|
8
|
Header ("Location: index_to_exam.php?n=$n&p=$p");
|
9
|
}
|
10
|
if (!Empty($send) && $send == $do_administrace) {
|
11
|
Header ("Location: index_to_admin.php?n=$n&p=$p");
|
12
|
}
|
13
|
endif;
|
14
|
|
15
|
?>
|
16
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
17
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="cs">
|
18
|
<head>
|
19
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
20
|
<meta http-equiv="Content-Language" content="cs" />
|
21
|
<title>Slovník katedry blízkovýchoních studií</title>
|
22
|
<link rel="stylesheet" type="text/css" href="css/kbs.css">
|
23
|
</head>
|
24
|
|
25
|
<body>
|
26
|
<div id="telickonejakystihly">
|
27
|
<form method="post">
|
28
|
<h3 class="nadpis2">Slovník katedry blízkovýchodních studií</h3>
|
29
|
<table width="200">
|
30
|
<tbody>
|
31
|
<tr class="akt">
|
32
|
<td width="40%" align="right">Nick:</td>
|
33
|
<td width="60%" align="left">
|
34
|
<input type="text" name="n" value="<?php echo $n ?>" /></td>
|
35
|
</tr>
|
36
|
<tr class="akt">
|
37
|
<td width="40%" align="right">Heslo:</td>
|
38
|
<td width="60%" align="left">
|
39
|
<input type="password" name="p" value="<?php echo $p ?>" /></td>
|
40
|
</tr>
|
41
|
<!--/tbody>
|
42
|
</table>
|
43
|
<table width="200">
|
44
|
<tbody-->
|
45
|
<tr class="nadpis_sekce">
|
46
|
<td width="50%" align="right">
|
47
|
<input type="submit" name="send" value="<?php echo $do_slovniku?>" /></td>
|
48
|
<td width="50%" align="right">
|
49
|
<input type="submit" name="send" value="<?php echo $do_administrace?>" /></td>
|
50
|
</tr>
|
51
|
|
52
|
<!--tr>
|
53
|
<td width="100%" class="akt">
|
54
|
<a href="index_to_exam.php">Vstup do studijního slovníku</a>
|
55
|
||
|
56
|
<a href="index_to_admin.php">Vstup do administrace</a>
|
57
|
|
58
|
</td>
|
59
|
</tr-->
|
60
|
</tbody>
|
61
|
</table>
|
62
|
<h6><a href="new_registration.php">Registrace nového uživatele</a></h6>
|
63
|
</form>
|
64
|
</div>
|
65
|
<div id = "right">
|
66
|
<img src = "./pictures/scan0001.jpg"
|
67
|
title = "OREL" /><br />
|
68
|
<h6>
|
69
|
6575676t
|
70
|
</h6>
|
71
|
</div>
|
72
|
</body>
|
73
|
</html>
|