-
Notifications
You must be signed in to change notification settings - Fork 9
/
alogin.html
131 lines (121 loc) · 3.42 KB
/
alogin.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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="theme-color" content="#fff" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
$(if refresh-timeout)
<meta http-equiv="refresh" content="$(refresh-timeout-secs)" />
$(endif)
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Success Login</title>
<link rel="stylesheet" href="style.css" />
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />
</head>
<body class="bg-gray-100 h-screen">
$(if advert-pending == 'yes') onLoad="openAdvert()" $(endif)
<div class="w-full md:w-1/3 mx-auto">
<div class="
flex
justify-between
text-green-500
px-7
py-4
text-xl
mx-auto
bg-white
">
<a href="https://survtechnologies.co.ke"><span class="fa fa-home"></span></a>
<a href="http://auth.ezwifi.co.ke/logout"><span class="fa fa-sign-out"></span></a>
</div>
<div class="text-center py-14">
<p class="text-7xl">
<span class="fa fa-check-circle-o text-green-500"></span>
</p>
<p class="text-green-500 font-bold">Success! You are now connected.</p>
<p>You can now access the internet!</p>
</div>
<p class="uppercase text-sm m-5 py-2 text-gray-400">Your Balances</p>
<div class="
bg-green-500
rounded-md
flex
justify-between
items-center
m-5
px-3
py-3
text-white
">
<span class="text-sm"><span class="fa fa-envelope px-2"></span>Active Access Code</span>
<span class="text-sm font-bold">$(username)</span>
</div>
<div class="
bg-white
rounded-md
flex
justify-between
items-center
m-5
px-3
py-3
">
<span class="text-green-500 text-sm"><span class="fa fa-wifi px-2"></span>ezWiFi Data Balance</span>
<span class="text-sm font-bold">$(remain-bytes-total-nice)</span>
</div>
<div class="
bg-white
rounded-md
flex
justify-between
items-center
m-5
px-3
py-3
">
<span class="text-green-500 text-sm"><span class="fa fa-mobile px-2"></span>Mambodata Balance</span>
<span class="text-sm font-bold">0MB</span>
</div>
<div class="
bg-white
rounded-md
flex
justify-between
items-center
m-5
px-3
py-3
">
<span class="text-green-500 text-sm"><span class="fa fa-envelope px-2"></span>Mambodata SMS Balance</span>
<span class="text-sm font-bold">0SMS</span>
</div>
<div class="w-1/4 mx-auto">
<a href="https://survtechnologies.co.ke" target="_blank">
<button class="
bg-red-600
px-5
py-3
text-white
rounded-xl
shadow
focus:outline-none
appearance-none
hover:bg-red-800
">
Continue
</button>
</a>
</div>
</div>
<script src="jquery.min.js"></script>
<script src="swal.js"></script>
<script>
$(function () {
var title;
$.getJSON("prices.json", function (data) {
$("title, #wifi_name").text(data.title)
})
})
</script>
</body>
</html>