forked from abdulsamad707/groceryWebsite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathverify.html
More file actions
95 lines (76 loc) · 2.17 KB
/
Copy pathverify.html
File metadata and controls
95 lines (76 loc) · 2.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Otp Moblie verification</title>
<link rel="stylesheet" href="css/style2.css">
</head>
<body>
<div class="container">
<form action="action_page.php">
<div class="row">
<div class="col-25">
<label for="mobile">Mobile</label>
</div>
<div class="col-75">
<input type="text" id="mobile" name="mobile" placeholder="Mobile.">
</div>
</div>
<div class="row">
<div class="col-25">
<label for="otp">OTP</label>
</div>
<div class="col-75">
<input type="text" id="otp" name="otp" placeholder="OTP ">
</div>
</div>
<div class="row">
<input type="submit" value="Verify Mobile" id="verify">
</div>
</form>
</div>
</body>
</html>
<script>
var $_GET = {};
if(document.location.toString().indexOf('?') !== -1) {
var query = document.location
.toString()
// get the query string
.replace(/^.*?\?/, '')
// and remove any existing hash string (thanks, @vrijdenker)
.replace(/#.*$/, '')
.split('&');
for(var i=0, l=query.length; i<l; i++) {
var aux = decodeURIComponent(query[i]).split('=');
$_GET[aux[0]] = aux[1];
}
}
document.getElementById("mobile").value=$_GET['mobile'];
document.getElementById("verify").addEventListener("click", function(event){
event.preventDefault();
token=aux[1];
var obj={
id:$_GET["id"],
mobile:document.getElementById("mobile").value,
otp:document.getElementById("otp").value
};
obj=JSON.stringify(obj);
url="http://localhost/grocery/api/verifyCustomer.php?key=6CU1qSJfcs";
fetch(url,{
method : "POST",
body : obj
}).then(function(response){
console.log(response);
return response.text();
}).then(function(text){
console.log(text);
}).catch(function(error){
console.log(error);
});
});
</script>
</body>
</html>