forked from eBildungslabor/bittefeedback
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
74 lines (61 loc) · 2.66 KB
/
index.php
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
<!DOCTYPE HTML>
<!--
Story by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>BitteFeedback - offenes Online-Feedback-Tool</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
</head>
<body class="is-preload">
<!-- Wrapper -->
<div id="wrapper" class="divided">
<!-- One -->
<section class="banner style2 content-align-left fullscreen">
<div class="content">
<p><?php
$included = true;
if (isset($_POST['title']) || isset($_GET['code']) || isset($_GET['secret'])) {
require('config.php');
require('dbsetup.php');
}
if (isset($_POST['title'])) {
require('register.php');
}
else if (isset($_GET['code'])) {
require('feedback.php');
}
else if (isset($_GET['secret'])) {
require('results.php');
}
else {
require('frontpage.php');
}
?></p>
</div>
<div class="image">
<img src="images/back.jpg" alt="" />
</div>
</section>
<!-- Footer -->
<footer class="wrapper style1 align-center">
<div class="inner">
<p>Mit BitteFeedback.de kannst Du einfach und unkompliziert Feedback geben oder erfragen. Es werden keine persönlichen Daten erhoben. Eine Registrierung ist nicht erforderlich. Alle Eintragungen werden nach 14 Tagen gelöscht. Nähere Informationen findest Du im <a href=/impressum.html>Impressum und den Hinweisen zum Datenschutz</a>
<p><small>BitteFeedback.de beruht auf freier Software. Der Code stammt von <a href="http://lgms.nl/" target="blank">Luc Gommans</a>. Du findest ihn <a href="https://github.com/lgommans" target="blank">bei Github</a>. Diese Installation habe ich für meine persönliche Nutzung im <a href="https://ebildungslabor.de target="blank">eBildungslabor</a> online gestellt und dazu den Code leicht modifiziert, ins Deutsche übersetzt und mithilfe eines Templates von <a href="https://html5up.net">HTML5 UP</a> gestaltet. Du findest <a href=>hier die angepasste Version</a></small> - z.B. für eine eigene Installation.</p>
</div>
</footer>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>