97 lines
4.7 KiB
HTML
97 lines
4.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Kontakt | Christian Braumann</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="description" content="Nehmen Sie über das Kontaktformular Kontakt mit mir auf.">
|
|
<link rel="stylesheet" href="../../assets/css/bootstrap.min.css">
|
|
<link rel="stylesheet" href="../../assets/fonts/fonts.css">
|
|
<link rel="stylesheet" href="../../assets/css/style.css">
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<div class="container sheet">
|
|
<div class="row content">
|
|
<div class="col-sm-3 sidenav">
|
|
<h4>Navigation</h4>
|
|
<ul class="nav nav-pills flex-column">
|
|
<li class="nav-item"><a class="nav-link" href="../../index.html"><img src="../../assets/images/home.svg" role="img" alt="Home" class="svgimages"> Startseite</a></li>
|
|
<li class="nav-item"><a class="nav-link" href="../werdegang.html"><img src="../../assets/images/plus.svg" role="img" alt="Home" class="svgimages">Werdegang</a></li>
|
|
<li class="nav-item"><a class="nav-link" href="../portfolio.html"><img src="../../assets/images/plus.svg" role="img" alt="Home" class="svgimages">Portfolio</a></li>
|
|
</ul><br>
|
|
</div>
|
|
|
|
<div class="col-sm-9">
|
|
<h1>Kontaktformular</h1>
|
|
|
|
<form action="" method="post">
|
|
<input name="security" type="hidden" value="secure">
|
|
|
|
<!-- Honeypot -->
|
|
<div style="position:absolute;left:-9999px;top:-9999px;" aria-hidden="true">
|
|
<label for="url">Bitte leer lassen</label>
|
|
<input type="text" name="url" id="url" tabindex="-1" autocomplete="off" value="">
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="mb-3 col-md-4">
|
|
<label for="SelectGender" class="form-label">Anrede <span class="req">Pflichtfeld</span></label>
|
|
<select name="gender" class="form-select" id="SelectGender" required>
|
|
<option value=""></option>
|
|
<option value="Herr">Herr</option>
|
|
<option value="Frau">Frau</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="mb-3 col-md-6">
|
|
<label for="InputName" class="form-label">Name <span class="req">Pflichtfeld</span></label>
|
|
<input name="name" type="text" class="form-control" id="InputName" required>
|
|
</div>
|
|
<div class="mb-3 col-md-6">
|
|
<label for="InputEmail" class="form-label">E-Mail-Adresse <span class="req">Pflichtfeld</span></label>
|
|
<input name="email" type="email" class="form-control" id="InputEmail" required>
|
|
</div>
|
|
<div class="mb-3 col-md-6">
|
|
<label for="subject" class="form-label">Anliegen <span class="req">Pflichtfeld</span></label>
|
|
<select name="subject" class="form-select" id="subject" required>
|
|
<option value=""></option>
|
|
<option value="Allgemein">Allgemeine Anfrage</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="mb-3">
|
|
<label for="TextareaMessage" class="form-label">Nachricht <span class="req">Pflichtfeld</span></label>
|
|
<textarea name="message" class="form-control" id="TextareaMessage" rows="5" required></textarea>
|
|
</div>
|
|
|
|
<div class="form-check mb-3">
|
|
<input type="hidden" name="optin" value="0">
|
|
<input type="checkbox" id="opt-in" name="optin" value="1" class="form-check-input" required>
|
|
<label for="opt-in" class="form-check-label">
|
|
<strong>HINWEIS</strong> <span class="req">Pflichtfeld</span><br>
|
|
Ich habe die Hinweise in der
|
|
<a href="privacy.html" target="_blank">Datenschutzerklärung</a>
|
|
verstanden und stimme diesen hiermit zu.
|
|
</label>
|
|
</div>
|
|
|
|
<button type="submit" name="sendform" class="btn btn-primary" style="margin-top:0.5rem">Absenden</button>
|
|
</form>
|
|
<br><br>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
<footer class="container">
|
|
<p style="text-align: center;"> © 2026 - Christian Braumann <a href="impress.html">Impressum</a> <a href="privacy.html">Datenschutz</a> <a href="contact.html">Kontakt</a></p>
|
|
<p style="text-align: center;">Design: <a href="https://html5up.net" target="_blank" rel="noopener">HTML5 UP</a> · Bilder: <a href="https://www.pexels.com" target="_blank" rel="noopener">Pexels</a></p>
|
|
</footer>
|
|
|
|
<script src="../../assets/js/bootstrap.bundle.min.js"></script>
|
|
</body>
|
|
</html>
|