Collection: 表单

<!-- Formulaire personnalisé --> <div class="custom-form"> <h2>Formulaire personnalisé</h2> <form action="/contact" method="post" enctype="multipart/form-data"> <label for="name">Votre nom :</label> <input type="text" id="name" name="name" requis> <label for="country">Pays :</label> <input type="text" id="pays" name="pays" requis> <label for="product">Produit :</label> <input type="text" id="product" name="product" requis> <input type="submit" value="Soumettre"> </form> </div> <!-- Fin du formulaire personnalisé -->