-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.htm
87 lines (87 loc) · 3.36 KB
/
index.htm
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>#kitinfo Pizza Planer</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="icon" href="static/favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="static/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="static/pizza.css" />
<meta name="description" content="Pizzaplanung in Zeiten des papierlosen Bueros." />
<meta name="robots" content="noindex,nofollow" />
<script type="text/javascript" src="static/ajax.js"></script>
<script type="text/javascript" src="static/cookies.js"></script>
<script type="text/javascript" src="static/pizza.js"></script>
</head>
<body onload="pizza.init();">
<div id="center-wrap">
<div id="center-box">
<div id="head-banner">
<img src="static/pizza.svg" alt="Pizza" style="height:4em" />
<h1>Pizzaplan</h1>
<h2>Go stuff yourself!</h2>
<div class="icebreaker"></div>
</div>
<div id="user-login" class="ui-box">
Bevor du Pizzamagie betreiben kannst, musst du dich anmelden!<br/>
Anzeigename: <input type="text" id="user-input" /> <a href="#" onclick="pizza.userCreate();" class="button">Stimmt so</a>
</div>
<div id="pizza-main" class="ui-box">
<div class="head-buttons">
Angemeldet als <span id="main-user">n/a</span>
<a href="#" onclick="pizza.enableAdmin();" class="button">Admin</a>
<a href="#" onclick="pizza.updateAll();" class="button">Update</a>
<a href="#" onclick="gui.displayInterface('new');" class="button">Neue Pizza</a>
</div>
<h2>Momentane Pizzas</h2>
<div class="pizza">
<a href="#" onclick="" class="button want-link">Dabei!</a>
<h3>Friss oder Stirb</h3>
<span class="contents">Kleine Katzen und Vegetarierfleisch auf Oeko-Doppelrahmteig ohne Atomstrom</span>
Preis (Gesamt/pro Person/mit dir): 12/4/3.50<br/>
Personen: 3/5<br/>
Beteiligte:<br/>
<ul>
<li>mpease</li>
<li>cbdev</li>
<li>drone</li>
</ul>
</div>
</div>
<div id="pizza-new" class="ui-box">
<div class="head-buttons">
<a href="#" onclick="gui.displayInterface('main');" class="button">Lass bleiben</a>
</div>
<h2>Neue Pizza eintragen</h2>
<table>
<tr>
<td>Name der Kreation</td>
<td><input type="text" id="new-name" class="pizza-input" /></td>
</tr>
<tr>
<td>Inhalt und Besonderheiten</td>
<td><input type="text" id="new-contents" class="pizza-input" /></td>
</tr>
<tr>
<td>Gesamtpreis</td>
<td><input type="text" id="new-price" class="pizza-input" /></td>
</tr>
<tr>
<td>Maximale Personenzahl</td>
<td><input type="text" id="new-maxpersons" class="pizza-input" /></td>
</tr>
<tr>
<td></td>
<td><a href="#" onclick="pizza.createPizza();" class="button">Passt</a></td>
</tr>
</table>
</div>
Current Status: <span id="status-out">n/a</span>
<span id="footer">
<a href="http://github.com/kitinfo/pizza-planer">[source]</a>
<a href="http://www.kopimi.com/kopimi/"><img src="static/kopimi.png"/></a>
<a href="http://wtfpl.net/"><img src="static/wtfpl.png"/></a>
</span>
</div>
</div>
</body>
</html>