Collection: 表单

<!-- Custom Form --> <div class="custom-form"> <h2>Custom Form</h2> <form action="/contact" method="post" enctype="multipart/form-data"> <label for="name">Your Name:</label> <input type="text" id="name" name="name" required> <label for="country">Country:</label> <input type="text" id="country" name="country" required> <label for="product">Product:</label> <input type="text" id="product" name="product" required> <input type="submit" value="Submit"> </form> </div> <!-- End of Custom Form -->