<!-- Benutzerdefiniertes Formular --> <div class="custom-form"> <h2>Benutzerdefiniertes Formular</h2> <form action="/contact" method="post" enctype="multipart/form-data"> <label for="name">Ihr Name:</label> <input type="text" id="name" name="name" erforderlich> <label for="country">Land:</label> <input type="text" id="country" name="country" erforderlich> <label for="product">Produkt:</label> <input type="text" id="product" name="product" erforderlich> <input type="submit" value="Submit"> </form> </div> <!-- Ende des benutzerdefinierten Formulars -->