blob: 2601b58a4fc6e9761a6e96db764d2983e9f55574 (
plain)
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
<?php $PAGE_TITLE = "Über"; ?>
<?php $NAV_LINK_ID = "about"; ?>
<?php include __DIR__ . "/../includes/template_head_start.php"; ?>
<?php if (!$__mobile): ?>
<style type="text/css">
<!--
textarea, input {
font: 10pt Courier, monospace;
background: #362d25;
color: white;
border: 1px solid;
border-color: #0f0c0a #53483d #53483d #0f0c0a;
padding: 4px;
}
button {
font: 12pt/1 Times, serif;
background: #362d25;
color: white;
border: 1px solid;
border-color: #53483d #0f0c0a #0f0c0a #53483d;
padding: 4px;
}
<?= "-->"; ?>
</style>
<?php endif; ?>
<?php include __DIR__ . "/../includes/template_head_end.php"; ?>
<h1>Über die Mystic House Corner</h1>
<p>
Die Mystic House Corner ist ein Projekt, um möglichst viele Inhalte zu dem
PC-Spiel <i>Mystic House</i> (1997) und der zugehörigen Engine, deren Entstehung
und deren Entwicklern zu dokumentieren.
</p>
<p>
Mystic House Corner: Ein Projekt von Jan W. und Jonas K.
</p>
<h2>Kontakt</h2>
<?php if ($__mobile): ?>
<form action="/cgi/contact.php" method="post" accept-charset="UTF-8">
<input name="utf8" type="hidden" value="✓">
<div class="form-group">
<label for="i_email">Ihre eMail-Adresse:</label>
<input class="form-control" type="text" id="i_email" name="email" size="40">
</div>
<div class="form-group">
<label for="i_name">Ihr Name:</label>
<input class="form-control" type="text" id="i_name" name="name" size="40">
</div>
<div class="form-group">
<label for="i_subject">Betreff:</label>
<input class="form-control" type="text" id="i_subject" name="subject" size="40">
</div>
<div class="form-group">
<label for="i_message">Ihre Nachricht:</label>
<textarea class="form-control" id="i_message" name="message" cols="40" rows="8"></textarea>
</div>
<div class="form-group">
<label for="i_captcha">CAPTCHA:</label>
<br>
<div class="text-center">
<iframe src="/cgi/captcha.php" border="0" frameborder="0" width="256" height="64" name="captchafr"></iframe>
</div>
<div class="input-group">
<input type="text" name="captcha" id="i_captcha" size="40" class="form-control">
<a class="btn btn-default input-group-addon" href="/cgi/captcha.php" target="captchafr"><i class="glyphicon glyphicon-refresh"></i></a>
</div>
</div>
<button type="submit" class="btn btn-primary">Absenden</button>
</form>
<?php else: ?>
<form action="/cgi/contact.php" method="post" accept-charset="UTF-8">
<input name="utf8" type="hidden" value="✓">
<table>
<tr><th align="left">Ihre eMail-Adresse:</th></tr>
<tr><td><input type="text" name="email" size="40"></td></tr>
<tr><th align="left">Ihr Name:</th></tr>
<tr><td><input type="text" name="name" size="40"></td></tr>
<tr><th align="left">Betreff:</th></tr>
<tr><td><input type="text" name="subject" size="40"></td></tr>
<tr><th align="left">Ihre Nachricht:</th></tr>
<tr><td><textarea name="message" cols="40" rows="8"></textarea></td></tr>
<tr><th align="left">CAPTCHA:</th></tr>
<tr><td>
<iframe src="/cgi/captcha.php" border="0" frameborder="0" width="256" height="64" name="captchafr"></iframe>
<br>
<small><a href="/cgi/captcha.php" target="captchafr">Neues Bild</a></small>
<br>
<input type="text" name="captcha" id="input-captcha" size="40">
</td></tr>
<tr><td><button type="submit">Absenden</button></td></tr>
</table>
</form>
<?php endif; ?>
<?php include __DIR__ . "/../includes/template_end.php"; ?>
|