Updated sites
This commit is contained in:
@@ -0,0 +1,95 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Bootstrap Example</title>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../../assets/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="../../assets/css/style.css">
|
||||
|
||||
<script src="../../assets/js/jquery-4.0.0.min.js"></script>
|
||||
<script src="../../assets/js/bootstrap.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<main>
|
||||
<div class="container-fluid">
|
||||
<div class="row content">
|
||||
<div class="col-sm-3 sidenav">
|
||||
<h4>Navigation</h4>
|
||||
<ul class="nav nav-pills nav-stacked">
|
||||
<li><a href="../../index.html"><img src="../../assets/images/home.svg" role="img" alt="Home" class="svgimages"> Home / About me</a></li>
|
||||
<li><a href="../empty1.html"><img src="../../assets/images/plus.svg" role="img" alt="Home" class="svgimages">Empty 1</a></li>
|
||||
<li><a href="../empty2.html"><img src="../../assets/images/plus.svg" role="img" alt="Home" class="svgimages">Empty 2</a></li>
|
||||
<li><a href="../empty3.html"><img src="../../assets/images/plus.svg" role="img" alt="Home" class="svgimages">Empty 3</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-control" 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-control" 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 style="color:var(--text-page)">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-primary-al" style="margin-top:0.5rem">Absenden</button>
|
||||
</form>
|
||||
<br><br>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
<footer class="container-fluid">
|
||||
<p style="text-align: center;"> © 2026 - Christian Braumann <a href="impress.html">Impress</a> <a href="privacy.html">Privacy policy</a> <a href="contact.html">Contact</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user