No Description Available
1
This sidebar contact form is used to get user query form the same page.
onex
Step by step form is smart way to collect data, where we collect data from user in steps.
FORM VALIDATIONS
bhuwan
This is an example of ionic 4 form , ionic is a Javascript framework used to build hybrid mobile app,desktop and pwa.
This kind of registration and appointment booking form can be used on many places like on slider,banner and section.
$('#login').click(function(){ $('#adpModal').modal('show'); }); $('#adpModal').modal('show');
<button id="login" class="btn btn-info">Login</button> <!--Modal--> <div class="modal fade" id="adpModal"> <div class="modal-dialog"> <div class="modal-content"> <!-- Modal Header --> <div class="modal-header"> <h4 class="modal-title">Login</h4> <button type="button" class="close" data-dismiss="modal">×</button> </div> <!-- Modal body --> <div class="modal-body"> <form action="#" method="POST"> <div class="form-wrapper"> <div class='form-group'> <label>Username</label> <input type="text" class="form-control"> </div> <div class='form-group'> <label>Password</label> <input type="password" class="form-control"> </div> <input type="submit" class="btn btn-success btn-block" value="Submit"> </div> </form> <p><a href="#">Create a new Account</a></p> </div> <!-- Modal footer --> </div> </div> </div>