-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
153 lines (129 loc) · 6.99 KB
/
index.html
File metadata and controls
153 lines (129 loc) · 6.99 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Join us!</title>
<link rel="stylesheet" href="./styles/main.css">
<script src="https://www.google.com/recaptcha/api.js"></script>
</head>
<body>
<main>
<section class="section-contact">
<div class="container" >
<img class="title-img" src="./imgs/title.png" alt="">
<h1>Bewirb dich jetzt!</h1>
<form action="/thankyou.html">
<input type="hidden" name="_next" value="/thanks.html">
<input type="text" name="_honey" style="display:none">
<input type="hidden" name="_captcha" value="false">
<div class="form-group">
<label for="fullname">Name und Nachname *</label>
<input class="form-element"
type="text"
name="fullname"
id="fullname"
placeholder="John Doe"
oninvalid="this.setCustomValidity('Bitte Vorname und Nachname eingeben')"
pattern="^\S+\s\S+$"
required>
</div>
<div class="form-group">
<label for="address">Strasse und Hausnummer *</label>
<input class="form-element"
id="address"
type="text"
name="address"
placeholder="Berliner Str. 1"
oninvalid="this.setCustomValidity('Pflichtfeld')"
required>
</div>
<div class="form-group">
<label for="zipcode">Postleitzahl *</label>
<input class="form-element"
id="zipcode"
type="text"
inputmode="numeric"
pattern="[0-9]*"
required
placeholder="12345">
</div>
<div class="form-group">
<label for="city">Ort *</label>
<input class="form-element"
id="city"
type="text"
name="city"
oninvalid="this.setCustomValidity('Pflichtfeld')"
placeholder="z.b Berlin"
required>
</div>
<div class="form-group">
<label for="tel">Telefonnummer *</label>
<input class="form-element"
id="tel"
type="tel"
name="tel"
oninvalid="this.setCustomValidity('Pflichtfeld')"
placeholder="+49 76543210"
pattern="[0-9]{9}"
required>
</div>
<div class="form-group">
<label for="time">Ich bin erreichbar</label>
<select class="form-element" id="time">
<option value="0912" selected>09:00-12:00</option>
<option value="1215">12:00-15:00</option>
<option value="1518">15:00-18:00</option>
<option value="1821" >18:00-21:00</option>
</select>
</div>
<div class="form-group">
<label for="salary">Gehaltwunsch </label>
<input class="form-element"
id="salary"
type="number"
name="salary"
placeholder="Optional"
min="10000" max="100000"
>
</div>
<div class="form-group">
<label for="beginn">Frühestmöglicher Eintrittstermin</label>
<input class="form-element"
type="date"
id="beginn"
name="beginn"
value="2022-12-01"
min="2022-12-01"
max="2023-02-01"
>
</div>
<div id="9" class="form-group">
<label for="email">E-Mail adresse *</label>
<input class="form-element"
id="email"
type="email"
name="email"
placeholder="john.doe@email.com"
required>
</div>
<div class="g-recaptcha" data-sitekey="6LdvPCsjAAAAAF8o4ot2EtmlLieNvrwhaBpLHxY1"></div>
<div id="10" class="form-group">
<div class="drop-zone">
<span class="drop-zone__prompt">Füge deine Unterlagen ein</span>
<input type="file" name="myFile" class="drop-zone__input">
</div>
</div>
<div class="submit-group">
<input type="submit" value="Senden">
</div>
</form>
</div>
</section>
</main>
<script src="https://code.jquery.com/jquery-3.6.1.js" integrity="sha256-3zlB5s2uwoUzrXK3BT7AX3FyvojsraNFxCc2vC/7pNI=" crossorigin="anonymous"></script>
<script src="./main.js"> </script>
</body>
</html>