-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuser.html
More file actions
129 lines (109 loc) · 4.32 KB
/
user.html
File metadata and controls
129 lines (109 loc) · 4.32 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
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
<!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">
<meta name="theme-color" content="#ffffff">
<link rel="shortcut icon" href="/assets/icons/Icon-48.png"/>
<title>Free Push Updates</title>
<meta name="description" content="Get Free Browser Push Notification Updates." />
<meta name="mobile-web-app-capable" content="yes">
<meta name="application-name" content="San Push">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="white-translucent">
<meta name="apple-mobile-web-app-title" content="San Push">
<link rel="apple-touch-icon" sizes="48x48" href="/assets/icons/Icon-48.png">
<link rel="apple-touch-icon" sizes="72x72" href="/assets/icons/Icon-72.png">
<link rel="apple-touch-icon" sizes="96x96" href="/assets/icons/Icon-96.png">
<link rel="apple-touch-icon" sizes="144x144" href="/assets/icons/Icon-144.png">
<link rel="apple-touch-icon" sizes="192x192" href="/assets/icons/Icon-192.png">
<link rel="apple-touch-icon" sizes="256x256" href="/assets/icons/Icon-256.png">
<link rel="apple-touch-icon" sizes="512x512" href="/assets/icons/Icon-512.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.9.0/css/bulma.min.css" integrity="sha512-ADrqa2PY1TZtb/MoLZIZu/Z/LlPaWQeDMBV73EMwjGam43/JJ5fqW38Rq8LJOVGCDfrJeOMS3Q/wRUVzW5DkjQ==" crossorigin="anonymous" />
<link rel="stylesheet" type="text/css" href="/assets/css/app.css">
<link href="https://fonts.googleapis.com/css?family=Ubuntu:400,500&display=swap" rel="stylesheet">
<style>
.hide {
display: none;
}
</style>
<link rel="dns-prefetch" href="//cdnjs.cloudflare.com">
<link rel="dns-prefetch" href="//www.gstatic.com">
<link rel="manifest" href="/manifest.json">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js" integrity="sha512-bLT0Qm9VnAYZDflyKcBaQ2gg0hSYNQrJ8RilYldYQ1FxQYoCLtUjuuRuZo+fjqhx/qtq/1itJ0C2ejDxltZVFg==" crossorigin="anonymous"></script>
<script src="https://www.gstatic.com/firebasejs/7.19.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.19.0/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.19.0/firebase-messaging.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.19.0/firebase-database.js"></script>
</head>
<body>
<section class="section">
<div class="container content">
<div class="columns is-centered">
<div class="column is-half">
<div class="author-box-avatar">
<img id="userimage">
</div>
<div class="author-box-description">
<p><div id="name"></div>Subscribe to Our Free Push Notification Updates - it's 💯 Free.</p>
<br>
<p class="control">
<button id="btnLogOut" class="hide button is-warning read-more" >🙈 Log Out</button>
</p>
</div>
<hr>
<h3 class="is-size-6">Free Push Notification Update</h3>
<br>
<div class="apps">
<div id="tokens"></div>
<div class="notices"></div>
<p class="control">
<button id="getpush" class="hide button is-info read-more">⚛ Subscribe</button>
</p>
</div>
<hr>
<div class="hero home-header">
<div class="hero-body card-content login">
<h2>Your Account Status</h2><br>
<div class="table-holder" style="overflow-x:auto;">
<table class="table table-bordered table-striped">
<tbody>
<tr>
<th>Your Email</th>
<td><div id="useremail"></div></td>
</tr>
<tr>
<th>Account Status</th>
<td><div id="status"></div></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<h3 class="title is-5">Delete My Account</h3>
<p class="control">
<button id="btndelete" class="button read-more is-danger">🌪 Delete Account</button>
</p>
<div id="acrmv"></div>
<br>
<p>Once Delete your Account all your Sign-in Records and Your Push Token will be Deleted from our Database.</p>
<p>Relogin to Create a Account and Get Free Push Updates.</p>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="content has-text-centered">
<p class="content has-text-centered">
<strong>🔮 Crafted</strong> by <a href="https://www.facebook.com/santhoshveercom" target="_blank" rel="nofollow noopener">Santhosh Veer</a> - Build using Firebase Authentication.
</p>
</div>
</footer>
<script src="/assets/js/app.js"></script>
<script src="/assets/js/account.js"></script>
<script src="/assets/js/delete.js"></script>
<script src="/assets/js/notification.js"></script>
</body>
</html>