]> git.somenet.org - fsinf/pub/w2c.git/blob - html_funcs.php
added exceptions, some more verification, checkboxes
[fsinf/pub/w2c.git] / html_funcs.php
1 <?php
2
3 /**
4 * welcome.TU.code Anmeldesystem.
5 * by David Kaufmann <astra@ionic.at>
6 */
7
8 function html_top($title = ""){
9         return <<<EOF
10 <!DOCTYPE html>
11 <html lang="de" dir="ltr">
12 <head>
13 <meta charset="utf-8">
14 <title>$title</title>
15 <link rel="stylesheet" href="style.css">
16 <script src="sorttable.js"></script>
17 </head>
18 <body id="welcometucode">
19 EOF;
20 }
21
22 function html_bottom(){
23         return <<<EOF
24 <hr>
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>
28 </body>
29 </html>
30 EOF;
31 }
32
33 function html_linkbox($current = "") {
34         $items = array(
35                 'index' => "Home",
36                 'list' => "Anmeldungen",
37                 'calendar' => "Kalender",
38                 'stats' => "Stats"
39         );
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>';
44         }
45         $out .= '</ul></div>';
46         return $out;
47 }