PHP Classes

File: index.php

Recommend this page to a friend!
  Classes of Arun Vitto   PHP OTP SMS   index.php   Download  
File: index.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP OTP SMS
Validate a mobile numbers sending SMS messages
Author: By
Last change:
Date: 6 years ago
Size: 708 bytes
 

Contents

Class file image Download
<!DOCTYPE html>
<html>
<head>
<title>How to Implement OTP SMS Mobile Verification in PHP with TextLocal</title>
<link href="style.css" type="text/css" rel="stylesheet" />
</head>
<body>

    <div class="container">
        <div class="error"></div>
        <form id="frm-mobile-verification">
            <div class="form-heading">Mobile Number Verification</div>

            <div class="form-row">
                <input type="number" id="mobile" class="form-input"
                    placeholder="Enter the 10 digit mobile">
            </div>

            <input type="button" class="btnSubmit" value="Send OTP"
                onClick="sendOTP();">
        </form>
    </div>

    <script src="jquery-3.2.1.min.js" type="text/javascript"></script>
    <script src="verification.js"></script>
</body>
</html>