akashmishra358 commited on
Commit
fd22207
·
verified ·
1 Parent(s): 54c3fd6

Delete otp_request.html

Browse files
Files changed (1) hide show
  1. otp_request.html +0 -34
otp_request.html DELETED
@@ -1,34 +0,0 @@
1
-
2
- <!DOCTYPE html>
3
- <html lang="en">
4
- <head>
5
- <meta charset="UTF-8">
6
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
- <title>OTP Gateway</title>
8
- </head>
9
- <body>
10
- <h2>Send OTP Request</h2>
11
-
12
- <form id="otpForm">
13
- <label for="isd_code">ISD Code:</label><br>
14
- <input type="text" id="isd_code" name="isd_code" required><br><br>
15
-
16
- <label for="phone">Phone Number:</label><br>
17
- <input type="text" id="phone" name="phone" required><br><br>
18
-
19
- <label for="tenant_id">Tenant ID:</label><br>
20
- <input type="number" id="tenant_id" name="tenant_id" required><br><br>
21
-
22
- <label for="product_id">Product ID:</label><br>
23
- <input type="number" id="product_id" name="product_id" required><br><br>
24
-
25
- <button type="submit">Send OTP</button>
26
- </form>
27
-
28
- <h3>Response:</h3>
29
- <pre id="response"></pre>
30
-
31
- <!-- Link to the external JavaScript file -->
32
- <script src="otp_request.js"></script>
33
- </body>
34
- </html>