-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact-me.html
119 lines (118 loc) · 3.67 KB
/
contact-me.html
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
---
layout: page
---
<article class="page mb6" role="article">
<header>
<h1 class="page-title">Contact Form - Kontaktformular</h1>
<div class="hr pb0"></div>
</header>
<p class="lead">You can start a conversation by submitting the form below.<br>Sie können eine Nachricht senden, indem Sie das nachstehende Formular ausfüllen.</p>
<form
action="https://formsubmit.co/808e81167cb335f819d74822827aa1c2"
class="validate message"
method="POST"
name="Contact Me"
>
<input type="hidden" name="contact_form" value="contact_form" />
<div class="form-group">
<div class="form-row">
<div class="col">
<input
type="text"
class="form-control"
placeholder="First Name - Vorname"
name="first_name"
required
/>
<p class="help-block text-danger"></p>
</div>
<div class="col">
<input
type="text"
class="form-control"
placeholder="Last Name - Nachname"
name="last_name"
required
/>
<p class="help-block text-danger"></p>
</div>
</div>
<div class="form-row">
<div class="col">
<input
type="text"
class="form-control"
placeholder="Company Name - Firmenname"
name="company_name"
required
/>
<p class="help-block text-danger"></p>
</div>
<div class="col">
<input
type="tel"
class="form-control"
placeholder="Phone Number - Telefonnummer"
name="phone_number"
minlength="10"
maxlength="15"
required
/>
<p class="help-block text-danger"></p>
</div>
</div>
<div class="form-row">
<div class="col">
<input
type="email"
class="form-control"
placeholder="E-Mail Address - E-Mail Adresse"
name="email_adress"
required
/>
<p class="help-block text-danger"></p>
</div>
<div class="col">
<input
type="text"
name="_honey"
style="display:none">
</div>
</div>
</div>
<div class="form-row">
<div class="col">
<input
type="text"
class="form-control"
placeholder="Subject - Betreff"
name="_subject"
required
/>
<p class="help-block text-danger"></p>
</div>
</div>
<div class="form-group">
<div class="form-group floating-label-form-group controls">
<textarea
rows="10"
class="form-control"
placeholder="Please enter your message here ... - Bitte geben sie hier ihre Nachricht ein ..."
name="message_text"
required
></textarea>
<p class="help-block text-danger"></p>
</div>
</div>
<div id="success"></div>
<div class="form-group">
<input type="hidden" name="_captcha" value="true">
<input type="hidden" name="_template" value="table">
<input type="hidden" name="_blacklist" value="cash, income, geld, einkommen, free, kostenlos, test, confidential, spam, scam, junk, deal, viagra, password, costs, urgent, bulk">
<button type="submit" class="btn btn-primary" id="sendMessageButton">
Submit
</button>
<input type="hidden" name="_next" value="https://jakobgabriel.github.io/blog-resume-jakob-gabriel/thank-you">
</div>
</form>
</article>