-
-
Notifications
You must be signed in to change notification settings - Fork 251
/
retrieve_ok.php
36 lines (27 loc) · 1.05 KB
/
retrieve_ok.php
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
<?php include 'config/declare.php'; ?>
<!-- a universal file that has all the classes included -->
<?php include 'config/classesGetter.php'; ?>
<!-- creating objects -->
<?php
$universal = new universal;
?>
<?php
if ($universal->isLoggedIn()) {
header('Location: '.DIR);
}
?>
<?php
$title = "Thanks for registering • Instagram";
$keywords = "Instagram, Share and capture world's moments, share, capture, about";
$desc = "Instagram lets you capture, follow, like and share world's moments in a better way and tell your story with photos, messages, posts and everything in between";
?>
<?php include 'index_include/index_header.php'; ?>
<div class="badshah">
<div class="about_div inst thanks_div">
<img src="<?php echo DIR; ?>/images/needs/glyph-instagram.jpg" alt="">
<div class="">
<span>A message has been sent to you email. Check your inbox and click on the link provided in the message to retrieve your account.</span>
</div>
</div>
</div>
<?php include 'index_include/index_footer.php'; ?>