Plugins to just process a form
-
Alot of times I build custom themes and the form design might be complicated where a drag and drop form builder doesn’t work design wise. Is anyone aware of a plugin that would allow me to map each field in my existing form to the plugin. In other words I would like to be able to write my own html with specific classes, then in the plug-in some how connect each field that needs to be processed. along with the usual parts of other simple form builders (send email confirmation, etc)
here is an example of a form I’m working on that has a parallax background and transparent field backgrounds:
<form class="form-horizontal"> <div class="row"> <div class="col-xs-4"> <input type="text" class="form-control input-lg" placeholder="Name"> </div> <div class="col-xs-4"> <input type="text" class="form-control input-lg" placeholder="Email"> </div> <div class="col-xs-4"> <input type="text" class="form-control input-lg" placeholder="Phone"> </div> </div> <div class="row"> <div class="col-xs-4"> <input type="text" class="form-control input-lg" placeholder="Date of Reservation"> </div> <div class="col-xs-4"> <input type="text" class="form-control input-lg" placeholder="Time of Reservation"> </div> <div class="col-xs-4"> <input type="text" class="form-control input-lg" placeholder="Number of Guests"> </div> </div> <div class="row"> <div class="col-xs-12"> <textarea class="form-control" rows="5" placeholder="Additional Comments"></textarea> </div> </div> <div class="row"> <div class="col-xs-12"> <input class="form-control input-lg" type="submit" class=""></input> </div> </div> </form>
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘Plugins to just process a form’ is closed to new replies.