-
Notifications
You must be signed in to change notification settings - Fork 54
/
thanks.php
49 lines (38 loc) · 1.31 KB
/
thanks.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
37
38
39
40
41
42
43
44
45
46
47
48
49
<?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;
$avatar = new Avatar;
$noti = new notifications;
$message = new message;
?>
<?php
if (!$universal->isLoggedIn() || $universal->e_verified($_SESSION['id'])) {
header('Location: '.DIR.'/login');
}
?>
<?php
$title = "Thanks for registering • Hashtag";
$keywords = "Hashtag, Share and capture world's moments, share, capture, about";
$desc = "Hashtag 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 'includes/header.php';
include 'needs/heading.php';
include 'needs/nav.php';
?>
<div class="badshah">
<div class="about_div inst thanks_div">
<img src="<?php echo DIR; ?>/images/needs/glyph-instagram.png" alt="Hashtag" height="50px" width="50px">
<div class="">
<span>
<center><p>Thanks for registering your Account, Enjoy <b>Hashtag.io</b>.</p>
<br>
You are Currently at your Homepage. Please use the sidebars to navigate.
</center></span>
</div>
</div>
</div>
<?php include 'includes/footer.php'; ?>