1
0
This repository has been archived on 2025-06-14. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
LuckyCoinkydink/htmlarea/plugins/FormOperations/default_form.html

36 lines
1.0 KiB
HTML
Executable File

<form>
<table class="contact_form">
<caption>Contact Us</caption>
<tbody>
<tr>
<th>Your name:</th>
<td><input type="text" name="Name" value="" /></td>
</tr>
<tr>
<th>Your email:</th>
<td><input type="text" name="Email" value="" /></td>
</tr>
<tr>
<th>Message Subject:</th>
<td><input type="text" name="Subject" value="" /></td>
</tr>
<tr>
<th>What are your hobbies?</th>
<td>
<input type="checkbox" value="Marbles" name="Hobbies[]" /> Marbles <br />
<input type="checkbox" value="Conkers" name="Hobbies[]" /> Conkers <br />
<input type="checkbox" value="Jacks" name="Hobbies[]" /> Jacks
</td>
</tr>
<tr>
<th>Message Body:</th>
</tr>
<tr>
<td colspan="2">
<textarea name="Message"> </textarea>
</td>
</tr>
</tbody>
</table>
<input type="submit" value="Send" /> &nbsp;&nbsp; <input type="reset" value="Reset" />
</form>