-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
65 lines (58 loc) · 2.85 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="description" content="lookup a phone number to determine whether you should call back">
<meta name="keywords" content="phone lookup">
<meta name="author" content="Simon Cheng">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Should I Call Back?</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.15/css/intlTelInput.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.15/js/intlTelInput.min.js"></script>
<link rel="stylesheet" href="style.css" />
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-61405225-16"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-61405225-16');
</script>
<script defer data-domain="should-i-call-back.binary-person.dev" src="https://paps.binary-person.dev/ce/pbjs.js"></script>
</head>
<body>
<h1>
Should I call back?
</h1>
<h5>View GitHub source <a href="https://github.com/binary-person/should-i-call-back" target="_blank">here</a></h5>
<h3>New version released <a href="https://should-i-call-back.org">here</a></h3>
<div class="container">
<form id="login" onsubmit="handleSubmit(event)">
<input id="phone" type="tel" name="phone" />
<input type="submit" class="btn" value="Lookup" />
</form>
<p class="error" style="display: none"></p>
<p class="info" style="display: none"></p>
<div class="data-container" style="display: none">
<p id="analysis"></p>
<div class="search-container">
Regardless, it's a good idea to search Google for these phone numbers to check if it belongs to a valid
business:
<div>
Click on the links to search <a href="#" id="national-format-link" class="search-btn"
target="_blank">+13334445555</a> or
<a href="#" id="e164-format-link" class="search-btn" target="_blank">(333) 444-5555</a>
</div>
</div>
<p class="spoof-note">Important note: caller id spoofing exists, meaning that although there's a low chance of it happening, the phone you call back may not be the phone number that dialed you. Search <a href="https://www.google.com/search?q=caller+id+spoofing" target="_blank">caller id spoofing</a> for more information.</p>
<table>
<tbody>
</tbody>
</table>
</div>
</div>
<script src="data.js"></script>
<script src="analyze-lookup.js"></script>
<script src="api.js"></script>
<script src="postload.js"></script>
</body>
</html>