bewertung/menuframe.php
2023-04-14 11:55:30 +02:00

111 lines
3.7 KiB
PHP
Executable File

<?php
$doz_uid1=$_COOKIE["doz_uid1"];
if ($doz_uid1 == ""){ include("kurs/anmeldefehler_subdir.php"); exit;} //Wenn man nicht angemeldet ist soll man nichts ausw&auml;hlen k&ouml;nnen
include("kurs/datenbankanbindung.php"); // f&uuml;gt die Datenbankanbindung ein: Sys:\php\includes\kurs\datenbankanbindung.php
echo"
<html>
<head>
<link rel=\"stylesheet\" href=\"styles_pc.css\" type=\"text/css\">
<meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\">
<title>Menu</title>
<base target=\"Hauptframe\">
</head>
<body class=\"farbe\" leftmargin=\"2\">
<table border=\"0\" style=\"border-collapse: collapse\" align=\"center\" cellpadding=\"0\" height=\"100%\" id=\"table1\">
<tr height=\"15\">
<td>
<table cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" height=\"15\" border=\"0\" id=\"table2\">
<tr>
<td valign=\"top\" align=\"left\" width=\"26\" height=\"30\">
<img src=\"images/sidebox-title-left.gif\"></td>
<td valign=\"center\" align=\"left\" width=\"143\" background=\"images/sidebox-title-bg.gif\" height=\"30\">
<font class=\"option\" color=\"#ffffff\">&nbsp; <b>Menu</b></font></td>
<td valign=\"top\" align=\"left\" width=\"6\" height=\"30\">
<img src=\"images/sidebox-title-right.gif\"></td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table cellspacing=\"0\" cellpadding=\"0\" width=\"175\" height=\"100%\" border=\"0\" id=\"table3\">
<tr valign=\"top\">
<td valign=\"bottom\" align=\"left\" width=\"4\" background=\"images/sidebox-bar-left.gif\">&nbsp;
<p><font face=\"Verdana\" style=\"font-size: 8pt\">
<img src=\"images/sidebox-bar-px.gif\"></font></p>
</td>
<td valign=\"top\" align=\"left\" width=\"166\" bgcolor=\"#d6dff7\">
<table cellspacing=\"0\" cellpadding=\"0\" width=\"164\" border=\"0\" height=\"100%\" id=\"table4\">
<tr>
<td valign=\"top\"> <font face=\"Verdana\"><span style=\"font-size: 8pt\">
<p>
<b>1. Schritt</b><br>
<strong>·</strong>
<a href=\"pers_daten_doz.php\" target=\"kurshaupt\">Pers&ouml;nliche Daten</a><br>
<br>
<!--
<b>2. Schritt</b><br>
<strong>·</strong>
<a href=\"fragebogen.php\" target=\"kurshaupt\">Angaben zum Fragebogen</a><br>
<br>-->
<b>2. Schritt</b><br>
<strong>·</strong>
<a target=\"kurshaupt\" href=\"bewertung.php?nr=1\">1. Hauptwunsch</a><br>
<strong>·</strong>
<a target=\"kurshaupt\" href=\"bewertung.php?nr=2\">2. Hauptwunsch</a><br>
<br>
<strong>·</strong>
<a target=\"kurshaupt\" href=\"bewertung.php?nr=3\">1. Ersatzwunsch</a><br>
<strong>·</strong>
<a target=\"kurshaupt\" href=\"bewertung.php?nr=4\">2. Ersatzwunsch</a><br>
<hr>
<strong>·</strong>
<a href=\"Kennwortwechsel_doz.php\" target=\"kurshaupt\">Kennwortwechsel</a><br>
<hr>
<strong>·</strong> </font>
<a href=\"logout_doz.php\" target=\"_top\">Logout</a>
</td>
</tr>
</table>
</td>
<td valign=\"top\" align=\"left\" width=\"4\" background=\"images/sidebox-bar-right.gif\">
<img src=\"images/sidebox-bar-px.gif\"></td>
</tr>
</table>
</td>
</tr>
<tr>
<td height=\"15\">
<table cellspacing=\"0\" cellpadding=\"0\" width=\"175\" height=\"15\" border=\"0\" id=\"table5\">
<tr>
<td valign=\"top\" align=\"left\" width=\"175\" height=\"29\">
<img src=\"images/sidebox-bottom.gif\"> </td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>";
?>