-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkontakt.php
More file actions
45 lines (34 loc) · 1.67 KB
/
Copy pathkontakt.php
File metadata and controls
45 lines (34 loc) · 1.67 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
<!DOCTYPE html>
<!-- Das ist html5-style. HTML5 ist abwärtskompatibel -->
<!-- http://css3-html5.de/html5-workshop-tutorial/ -->
<!-- font-squirrel: fontsquirrel.com -->
<html lang="en">
<?php include("meta.php") ?>
<body>
<?php include("header.php") ?>
<?php include("nav.php") ?>
<div id="private">
<article class="contact-box">
<div id="contact-info">
<h4>Kontaktieren Sie mich</h4>
<p><mark>Name:</mark> Max Oberberger</p>
<p><mark>Email:</mark> max@thescom.de</p>
<p><mark>Tel:</mark> +49 17625687735</p>
</div>
<div id="contact-form">
<form action="http://maxoberberger.net/cgi-bin/selfmail.pl" method="post">
<input type="hidden" name="return" value="http://thescom.de/kontakt.php">
<input type="hidden" name="delimiter" value=": ">
<input type="hidden" name="subject" value="Feedback-Formular">
<input type="text" id="full_name" name="full_name" placeholder="Name*" required oninvalid="this.setCustomValidity('Bitte geben Sie Ihren Namen ein')">
<input type="email" id="email_addr" name="email_addr" placeholder="Email*" required>
<input type="text" id="title" name="title" placeholder="Betreff*" required oninvalid="this.setCustomValidity('Bitte geben Sie einen Betreff ein')">
<textarea type="text" name="message" rows="4" cols="40" id="message" placeholder="Nachricht*" required oninvalid="this.setCustomValidity('Bitte geben Sie eine Nachricht ein')"></textarea>
<input type="submit" value="Absenden" />
</form>
</div>
</article>
</div>
<?php include("footer.php") ?>
</body>
</html>