Sep 14th, 2012, 3:45 AM
Hi
I was trying to link my external form with formtools but am running into issue as form fields are not visible in formtools while DB setup. I have earlier installed other forms successfully in formtool. Can someone tell what could be the issue? This form I do not have Label should I have them?
Sample Form code:
I was trying to link my external form with formtools but am running into issue as form fields are not visible in formtools while DB setup. I have earlier installed other forms successfully in formtool. Can someone tell what could be the issue? This form I do not have Label should I have them?
Sample Form code:
Code:
<form action="http://127.0.0.1/formtools/process.php" method="POST" data-form="validate">
<input type="hidden" name="form_tools_initialize_form" value="1" />
<input type="hidden" name="form_tools_form_id" value="3" />
<dl class="field row" style=" margin-top: 5%; ">
<dt class="text"><input type="text" placeholder="Name" required="" id="username"></dt>
<dd class="msg"><span class="caret"></span>You filled this out wrong.</dd>
</dl>
<dl class="field row">
<dt class="text"><input type="email" id="mailid" placeholder="Email - preferably IIT student/ alumni id" required=""></dt>
<dd class="msg"><span class="caret"></span>You filled this out wrong.</dd>
</dl>
<ul class="field row" >
<li class="picker">
<select id="campus" required="">
<option selected="">Select</option>
<option>XYZ</option>
</li>
</ul>
<div class="row centered" style="margin-bottom: 55%">
<p class="btn submit"><button type="submit" value="Submit" >Submit</button></p>
</div>
</form>