-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (48 loc) · 1.79 KB
/
index.html
File metadata and controls
51 lines (48 loc) · 1.79 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
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Network Teller</title>
<meta
name="description"
content="Know the network provider of any Nigeria phone number"
/>
<link rel="stylesheet" href="/static/css/resets-classes.css" />
<link rel="stylesheet" href="/static/css/loader.css" />
<link rel="stylesheet" href="/static/css/styles.css" />
</head>
<body>
<div class="main-container overlay">
<div class="form-container z-high">
<h3 class="header-txt">Know the Network provider</h3>
<form action="" method="" id="">
<input
type="tel"
name="num"
id="num"
maxlength="14"
placeholder="Enter phone '09023714978' "
/>
<p class="d-none errors">Enter correct a phone number</p>
<div class="loader-container"></div>
<button type="submit" class="d-block submit-btn">Enter</button>
<div class="d-none loader"></div>
</form>
<div class="d-none network-provider"></div>
<div class="download">
<p>Download on</p>
<a href="https://apps.apple.com/ng/app/network-teller/id6752230089" class="apple">
<img src="/static/img/icons8-app-store-48.png" alt="" srcset="" />
Apple Store
</a>
<a href="https://play.google.com/store/apps/details?id=com.thinkingtek.networkteller" class="googleplay">
<img src="/static/img/icons8-google-play-50.png" alt="" srcset="" />
GooglePlay Store
</a>
</div>
<p class="footer">Built by ThinkingTek Industries v1.1</p>
</div>
</div>
<script src="/static/js/core.js"></script>
</body>
</html>