SHOW:
|
|
- or go back to the newest paste.
1 | <article class="grid_8"> | |
2 | <h3>Contact Form</h3> | |
3 | <form id="contact-form" method="post" enctype="multipart/form-data" action="send_contact.php"> | |
4 | <fieldset> | |
5 | - | <label><span class="text-form">Your Name:</span><input type="text"></label> |
5 | + | <label><span class="text-form">Your Name:</span><input name="name" type="text"></label> |
6 | - | <label><span class="text-form">Your Email:</span><input type="text"></label> |
6 | + | <label><span class="text-form">Your Email:</span><input name="customer_mail" type="text"></label> |
7 | <div class="wrapper"> | |
8 | <div class="text-form">Your Message:</div> | |
9 | <div class="extra-wrap"> | |
10 | - | <textarea></textarea> |
10 | + | <textarea name="detail"></textarea> |
11 | <div class="clear"></div> | |
12 | <div class="buttons"> | |
13 | <a class="button" onClick="document.getElementById('contact-form').reset()"><span>clear</span></a> | |
14 | <a class="button" onClick="document.getElementById('contact-form').submit()"><span>send</span></a> | |
15 | ||
16 | </div> | |
17 | </div> | |
18 | </div> | |
19 | </fieldset> | |
20 | </form> | |
21 | </article> |