forked from janfrl/dhbw-mehms-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkontaktFormular.php
48 lines (44 loc) · 879 Bytes
/
kontaktFormular.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
<!DOCTYPE html>
<html lang="de">
<head>
<link href="styles/kontakt.css" rel="stylesheet">
<meta charset="UTF-8">
<title> Kontaktformular - erfolgreich gesendet </title>
<?php include("includes/meta.php"); ?>
<style>
:root {
--banner-top: #b167eb;
--banner-bottom: #4bd8f6;
}
</style>
</head>
<body>
<?php include("includes/header.php"); ?>
<main class="container">
<section>
<h2>Sehr geehrte/-r
<strong>
<?php
echo $_POST["kName"];
?>
</strong>
</h2>
Vielen Dank, dass du uns diese Nachricht gesendet hast:
<div>
<?php
echo $_POST["kNachricht"];
?>
</div>
Wir werden dir schnellstmöglich an
<strong>
<?php
echo $_POST["kMail"];
?>
</strong>
antworten.
</section>
</main>
<?php include("includes/footer.php"); ?>
<?php include("includes/bottom-navigation.php"); ?>
</body>
</html>