-
Notifications
You must be signed in to change notification settings - Fork 0
/
kontakt.php
94 lines (94 loc) · 3.16 KB
/
kontakt.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<?php
require "funcz/functionz.php";
print head("de","Kontakt ");
?>
<body>
<div id="wrapper">
<div id="sidebar-wrapper">
<?php print menu("de","Kontakt","kontakt_e.php","kontakt.php","kontakt_ch.php");?>
</div>
<div id="page-content-wrapper">
<div class="container-fluid">
<?php topRight();?>
<div class="row">
<div class="col-lg-12 header">
<h2>Kontakt</h2>
</div>
</div>
<div class="row">
<div class="col-sm-6">
<table class="table">
<tr>
<td><strong>Post</strong></td>
<td>:</td>
<td>William Cuthbertson<br/>
Theodor-Heuss-Str.16<br/>
79183 Waldkirch<br/>
Baden-Württemberg<br/>
Deutschland</td>
</tr>
<tr>
<td><strong>Tel.</strong></td>
<td> : </td>
<td><a href="tel:+497681409260">0 76 81 40 92 60</a></td>
</tr>
<tr>
<td><strong>E-Mail</strong></td>
<td> : </td>
<td><a href="mailto:w.cuthbertson@gmx.de">w.cuthbertson@gmx.de</a></td>
</tr>
<tr>
<td><strong>E-Mail (website)</strong></td>
<td> : </td>
<td><a href="mailto:guylancaster@hotmail.com">guylancaster@hotmail.com</a></td>
</tr>
</table>
</div>
<div class="col-sm-6">
<?php photorightnolink("FotoChopinKonzertSept2010_350.jpg","William Cuthbertson - Chopin Konzert Sept 2010");?>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="alpha">Ihre Nachricht</div>
<a id="form"></a>
<div class="alpha" style="color:#F00;"><?php print $_GET["error"];?></div>
<form action="do_contact.php" method="POST" title="Send me a message">
<table class="table">
<tr>
<td>Name : </td>
<td><input type="text" id="sname" name="sname" size="70" required value="<?php print $_GET["sname"]; ?>"/></td>
</tr>
<tr>
<td>Email : </td>
<td><input type="email" required id="email" name="email" size="70" value="<?php print $_GET["email"]; ?>" /></td>
</tr>
<tr>
<td>Telefon : </td>
<td><input type="text" id="phone" name="phone" size="70" value="<?php print $_GET["phone"];?>"/></td>
</tr>
<tr>
<td>Betreff : </td>
<td> <input type="text" id="subject" name="subject" size="70" required value="<?php print $_GET["subject"];?>" /></td>
</tr>
<tr>
<td >Anfrage : </td>
<td><textarea rows="6" cols="60" id="message" name="message" required><?php print $_GET["message"];?></textarea></td>
</tr>
<tr>
<td> </td>
<th><input type="submit" value="Versenden"/></th>
</tr>
</table>
</form>
<br/>
* Ihre E-Mail werden nicht an Dritte weitergegeben
<?php print foot(); ?>
</div>
</div>
</div>
</div> <!-- /#page-content-wrapper -->
</div> <!-- /#wrapper -->
<?php print endPage();?>
</body>
</html>