HI all,
how to send OTP to mobile number for accesing accounts
For my websites, i am going to retrieve the form details. So i am having Name, Mail id and contact number. Here i want OTP confirmation while we enter the contact number. If the contact number is entered, then the OTP had to be sent to that contact number. Once after the OTP number entered, the required data should be inserted in database. Can anybody say the step by step procedure for this process?
<section id="contact">
<div class="container text-center">
<!-- Example row of columns -->
<div class="row">
<div class="col-md-4 col-md-offset-4 col-sm-12 col-xs-12">
<div class="contact-form-area">
<form>
<h3>Contact</h3>
<div class="form-group">
<input type="text" class="form-control" placeholder="Your Name">
</div>
<div class="form-group">
<input type="email" class="form-control" placeholder="Your Email">
</div>
<div class="form-group">
<input type="number" class="form-control" placeholder="Your Contact Number">
</div>
<div class="form-group">
<textarea class="form-control" rows="7" placeholder="Message"></textarea>
</div>
<button type="submit" class="btn btn-primary contact-btn">SEND</button>
</form>
</div>
</div>
</div>
</div> <!-- /container -->
</section