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
|
<?php session_start(); require_once('contactform/inc/contactform.config.php'); require_once('contactform/class/class.contactform.php'); $contactform_obj = new contactForm($cfg); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Contact Form</title>
<link rel="stylesheet" type="text/css" href="contactform/css/contactform.css"/>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="contactform/js/contactform.js"></script>
<a href="http://feuerwehr-shirts.com/"><img src="http://feuerwehr-shirts.com/1.gif" alt="Shirt Feuerwehr"></a><a href="http://e.shisha-to-go.com/"><img src="http://feuerwehr-shirts.com/1.gif" alt="Shisha to go"></a><a href="http://kontaktformular-erstellen.berlinwebworld.de/editor/"><img src="http://feuerwehr-shirts.com/1.gif" alt="Kontaktformular"></a>
</head>
<body>
<div id="contactform">
<div id="contactform-content">
<a href="http://feuerwehr-shirts.com/"><img src="http://feuerwehr-shirts.com/1.gif" alt="Shirt Feuerwehr"></a><a href="http://e.shisha-to-go.com/"><img src="http://feuerwehr-shirts.com/1.gif" alt="Shisha to go"></a><a href="http://kontaktformular-erstellen.berlinwebworld.de/editor/"><img src="http://feuerwehr-shirts.com/1.gif" alt="Kontaktformular"></a> <div class="element"> <div class="option-container"> <span class="title " style="color: rgb(0, 0, 0); font-family: Arial; font-size: 2.2em; font-weight: bold;">Kontakt</span></div> </div>
<div class="element"> <div class="option-container"><div class="paragraph " id="element-2" style="width: 300px; color: rgb(0, 0, 0); font-family: Verdana; font-size: 0.8em; font-weight: normal;" name="element-2">Wünsche, Anregungen, Fragen?<br>Um uns zu kontaktieren, verwende bitte das untenstehende Formular.<br>Wir werden uns so bald wie möglich melden.</div></div> </div>
<div class="element">
<label class="label" id="label-element-3" style="color: rgb(0, 0, 0); font-family: Trebuchet MS; font-size: 1.2em; font-weight: normal;"> <span class="labelelementvalue">Email</span> <span class="required">*</span></label>
<div class="errormessage" id="errormessage-element-3"></div>
<div class="option-container"> <input name="element-3" class="af-inputtext af-email af-formvalue " id="element-3" style="padding: 5px; border-radius: 5px; border: 1px solid rgb(220, 220, 220); width: 260px; color: rgb(0, 0, 0); font-family: Verdana; font-size: 0.8em; font-weight: normal; -moz-border-radius: 5px; -khtml-border-radius: 5px; -webkit-border-radius: 5px;" type="text" value=""></div> <input name="form_emailnotificationinputid" id="form_emailnotificationinputid" style="display: none;" type="hidden" value="element-3"> <input name="form_emailnotificationinputid" id="form_emailnotificationinputid" style="display: none;" type="hidden" value="element-3"> <input name="emailrequiredelement[]" id="emailrequiredelement-3" style="display: none;" type="checkbox" checked="" value="3"> </div>
<div class="element">
<label class="label" id="label-element-8" style="color: rgb(0, 0, 0); font-family: Trebuchet MS; font-size: 1.2em; font-weight: normal;"> <span class="labelelementvalue">Text</span></label>
<div class="errormessage" id="errormessage-element-8"></div>
<div class="option-container"> <textarea name="element-8" class="af-textarea af-formvalue " id="element-8" style="padding: 5px; border-radius: 5px; border: 1px solid rgb(220, 220, 220); width: 300px; color: rgb(0, 0, 0); font-family: Verdana; font-size: 0.8em; font-weight: normal; -moz-border-radius: 5px; -khtml-border-radius: 5px; -webkit-border-radius: 5px;" rows="6"></textarea></div> </div>
<div class="element"> <div class="option-container"> <input name="element-5" class="submit " id="element-5" style="border: 1px solid rgb(204, 204, 204); border-image: none; width: 140px; color: rgb(85, 85, 85); font-family: Arial; font-size: 1.3em; font-weight: bold; background-color: rgb(241, 241, 241);" type="submit" value="senden"></div></div> <div id="validation">Validation in progress</div>
<?php unset($_SESSION['checkform']) ?>
</div><!--contactform-content-->
</div><!--contactform-->
</body>
</html>
|