-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkontakt.php
More file actions
242 lines (203 loc) · 7.56 KB
/
kontakt.php
File metadata and controls
242 lines (203 loc) · 7.56 KB
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
<!DOCTYPE html>
<html>
<?php require_once "php/recaptcha_config.php" ?>
<head>
<meta charset="utf-8">
<title>Ristorante l'Imaginario</title>
<!-- Imports ---------------------->
<!-- Bootstrap JS -->
<script src="js/bootstrap.min.js"></script>
<!-- jQuery -->
<script src="js/jquery-1.11.1.js"></script>
<!-- Sticky Header -->
<script src="js/sticky.js"></script>
<!-- Bootstrap CSS-->
<link href="css/bootstrap.css" rel="stylesheet">
<!-- reCAPTCHA API -->
<script src="https://www.google.com/recaptcha/api.js?hl=<?php echo LANG;?>"></script>
<!-- Styles ---------------------->
<style type="text/css">
a {
/ word-wrap: break-word;
}
.header {
padding-top: 15px;
height: 50px;
margin-left: auto;
margin-right: auto;
background-color: white;
}
.navigation {
width: 95%;
margin-left: auto;
margin-right: auto;
}
.sticky {
position: fixed;
top: 0;
width: 100%;
z-index: 100;
border-top: 0;
}
.content {
width: 95%;
margin-left: auto;
margin-right: auto;
}
.kontaktformular {
max-width: 60%;
min-width: 350px;
height: auto;
display: inline-block;
margin: 20px 20px 20px 0px;
float: left;
}
.anschrift {
min-width: 30%;
max-width: 400px;
display: inline-block;
margin: 20px;
}
/*
.captchaError {
color: red;
font-weight: bold;
}
.submitSuccess {
color: green;
font-weight: bold;
}
#recaptcha_response_field {
height: auto !important;
}
*/
#formPreview input,
#formPreview select {
display: block;
width: 128px;
height: 30px;
float: left;
}
#formPreview label {
display: block;
float: left;
font-size: 15px;
width: 90px;
line-height: 24px;
}
#formPreview .formdiv {
margin: 11px 0;
}
#formPreview textarea {
width: 100%;
height: 115px;
}
.intro {
margin: 0px 20px 0px 0px;
}
.floatRight {
float: right;
}
</style>
</head>
<body>
<div>
<img src="images/restaurant2.jpg" width="100%">
</div>
<div id="pageHeader" class="header">
<div class="navigation">
<ul class="nav nav-tabs" style="background-color:white;">
<li role="presentation"><a href="index.html">Start</a>
</li>
<li role="presentation"><a href="reservierung.php">Reservierung</a>
</li>
<li role="presentation" class="active"><a href="kontakt.php">Kontakt</a>
</li>
<li role="presentation"><a href="impressum.php">Impressum</a>
</li>
</ul>
</div>
</div>
<div class="content" id="content">
<div class="intro">
<h1>Kontakt</h1>
<p>Kritik, Wünsche oder Anregungen? Schreiben Sie uns über unser Kontaktformular:</p>
</div>
<div>
<div class="panel panel-default kontaktformular" id="formPreview">
<div class="panel-heading">
<h3>Kontaktformular</h3>
</div>
<div class="panel-body">
<form action="#" method="post" class="clear">
<div id="formName" class="clear">
<div id="formtAnrede" class="clear formdiv">
<div class="layout">
<label for="anrede">Anrede:</label>
<select name="anrede" id="anrede">
<option value="Herr">Herr</option>
<option value="Frau">Frau</option>
<option value="Dipl. Ing.">Dipl. Ing.</option>
<option value="Prof.">Prof.</option>
<option value="Prof. Dr.">Prof. Dr.</option>
<option value="Herr Dr.">Herr Dr.</option>
<option value="Frau Dr.">Frau Dr.</option>
</select>
</div>
<br></br>
</div>
<div class="clear formdiv">
<div class="layout">
<label for="vorname">Vorname:*</label>
<input class="form-control" type="text" name="vorname" id="vorname">
</div>
<br></br>
<div class="layout">
<label for="nachname">Nachname:*</label>
<input class="form-control" type="text" name="nachname" id="nachname">
</div>
<br></br>
</div>
</div>
<div id="kontaktEmail" class="clear formdiv">
<div class="layout">
<label for="email">Email:*</label>
<input class="form-control" type="text" name="email" id="email">
</div>
<br></br>
</div>
<div id="kontaktTelefon" class="clear formdiv">
<div class="layout">
<label for="telefon">Telefon:</label>
<input class="form-control" type="text" name="telefon" id="telefon">
</div>
<br></br>
</div>
<br class="clear">
<label for="message">Nachricht:*</label>
<textarea class="form-control" style="height:187px;resize:none;" name="message" id="message"></textarea>
<div class="g-recaptcha" style="margin-top:20px" data-sitekey="<?php echo SITE_KEY;?>"></div>
<button class="btn btn-primary floatRight" style="margin-top:20px;" type="submit" name="submit" id="sendkontakt">Absenden</button>
<br class="clear"/>
<p style="margin-top:30px;">Die mit * gekennzeichneten Felder müssen ausgefüllt werden.</p>
</form>
</div>
</div>
<div class="panel panel-default anschrift">
<div class="panel-heading">
<h3>Anschrift</h3>
</div>
<div class="panel-body">
<h4>Ristorante l'Imaginario</h4>
<p>Bruchstr. 6<br/>
45883 Gelsenkirchen
</p>
<p>Telefon: (0211) 963411<br/>
E-Mail: <a href='mailto:info@imaginario.de'>info@imaginario.de</a>
</p>
</div>
</div>
</div>
</div>
</body>
</html>