4 * welcome.TU.code Anmeldesystem.
5 * by David Kaufmann <astra@ionic.at>
8 function html_top($title = ""){
11 <html lang="de" dir="ltr">
13 <meta charset="utf-8">
15 <link rel="stylesheet" href="style.css">
16 <script src="sorttable.js"></script>
18 <body id="welcometucode">
22 function html_bottom(){
25 <!-- Entwickelt 2015 von David "astra" Kaufmann (Layout + Website) und Jan "someone" Valeš (Datenbank + Website). -->
26 <p class="footnote"><a href="https://frost.fsinf.at/iris?channels=w2c">Live-Support-WebChat</a> (Ist ein WebIRC zu <a href="irc://irc.fsinf.at/w2c">#w2c auf irc.fsinf.at</a>)
27 <br>Auch möglich: <a href="mailto:someone@fsinf.at">eMail an someone@fsinf.at</a></p>
33 function html_linkbox($current = "") {
36 'list' => "Anmeldungen",
37 'calendar' => "Kalender",
40 $out = '<div id="menu" class="align-center"><h1>Anmeldesystem welcomeTUcode</h1><ul class="menulist">';
41 foreach ($items as $file => $name) {
42 $activeitem = ($current === $file) ? ' menuactive' : '';
43 $out .= '<li class="menuitem'.$activeitem.'"><a href="./'.$file.'.php">'.$name.'</a></li>';
45 $out .= '</ul></div>';