REQ - Form in Signature

AZPower

New Member
Hey all,

Is there any way to use a form in part of a signature? If so, could I please get the hack or BB code?

Thanks
 
basically, it's a form to check availability...I am a disc jockey and it would allow users to check and see if I am available for a certain date. The form takes the shape similiar to a banner and has selectable areas in it.

Here is the code for it...I hope I am not breaking any rules, but this is the best way to show what I mean.

Everytime I try to put this into my signature it separates the code and does not function properly.

Code:
<!-- START CJ'S DJ'S INTERACTIVE BANNER CODE -->

<form method="POST" action="http://www.cjsdjs.djintelligence.com/availability/index.asp" target="_blank" onsubmit="return FrontPage_Form1_Validator(this)" language="JavaScript" name="FrontPage_Form1">
	<input type="hidden" name="ID" value>
	<div align="center">
	<table border="1" bordercolor="#0000FF" width="468" bgcolor="" height="60" id="table1" cellspacing="0" cellpadding="0">
		<tr>
			<td bgcolor="#FFFFFF" bordercolor="#FFFFFF" align="center">
			<b><font face="Verdana" color="#0000FF">Searching for a disc jockey for your special event?</font></b><br>
          <select name="Day" size="1" style="color: #000000; font-family: Verdana; font-size: 10px">
            <option selected value="0">Day</option>
            <option value="1">1
            <option value="2">2
            <option value="3">3
            <option value="4">4
            <option value="5">5
            <option value="6">6
            <option value="7">7
            <option value="8">8
            <option value="9">9
            <option value="10">10
            <option value="11">11
            <option value="12">12
            <option value="13">13
            <option value="14">14
            <option value="15">15
            <option value="16">16
            <option value="17">17
            <option value="18">18
            <option value="19">19
            <option value="20">20
            <option value="21">21
            <option value="22">22
            <option value="23">23
            <option value="24">24
            <option value="25">25
            <option value="26">26
            <option value="27">27
            <option value="28">28
            <option value="29">29
            <option value="30">30
            <option value="31">31
          </select> <select name="Month" size="1" style="color: #000000; font-family: Verdana; font-size: 10px">
            <option selected value="0">Month</option>
            <option value="1">January
            <option value="2">February
            <option value="3">March
            <option value="4">April
            <option value="5">May
            <option value="6">June
            <option value="7">July
            <option value="8">August
            <option value="9">September
            <option value="10">October
            <option value="11">November
            <option value="12">December
          </select> <select size="1" name="Year" style="color: #000000; font-family: Verdana; font-size: 10px">
            <option value="0" selected>Year</option>
            <option value="2008">2008</option>
            <option value="2009">2009</option>
            <option value="2010">2010</option>
            <option value="2011">2011</option>
          </select> 
			<input type="submit" value="Check Availability" style="color: #000000; font-family: Verdana; font-size: 10px; cursor: hand; width: 140"><br>
			<font face="Verdana" size="1">
			<a href="http://www.cjsdjs.ca" target="_blank">
			<font color="#0000FF"><span style="text-decoration: none">Check CJ'S DJ'S' 
			availability instantly!</span></font></a></font></td>
		</tr>
	</table>
	</div>
</form>

<!-- END CJ'S DJ'S INTERACTIVE BANNER CODE -->
 
Back
Top