-
Notifications
You must be signed in to change notification settings - Fork 54
/
success.php
75 lines (64 loc) · 2.92 KB
/
success.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
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
<?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;
$session = $_SESSION['id'];
?>
<?php
// if ($universal->isLoggedIn() == false) {
// header('Location: '.DIR);
// }
?>
<?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";
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title><?php echo $title; ?></title>
<meta name="keywords" content=<?php echo $keywords; ?>>
<meta name="description" content=<?php echo $desc; ?>>
<meta name="author" content="Hashtag, Subho">
<link rel="shortcut icon" href="images/favicon/favicon.png" type="image/png">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,600,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<!-- <link href="https://fonts.googleapis.com/css?family=Arima+Madurai" rel="stylesheet"> -->
<link href="https://fonts.googleapis.com/css?family=Satisfy" rel="stylesheet">
<link rel="stylesheet"href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="public/css/master.css">
</head>
<body>
<div class="index_header">
<div class="logo">
<img src="images/needs/glyph-instagram.jpg" alt="">
<hr>
<!-- <img src="images/needs/Snap 2017-01-29 at 18.32.04.jpg" alt=""> -->
<span>Hashtag</span>
</div>
<div class="right">
<a href="<?php echo DIR; ?>/" class="">Home</a>
<a href="<?php echo DIR; ?>/profile/<?php echo $universal->GETsDetails($session, "username"); ?>" class="">Profile</a>
<a href="<?php echo DIR; ?>/about">About</a>
<a href="<?php echo DIR; ?>/help">Help</a>
</div>
</div>
<div class="badshah">
<div class="about_div inst success_div">
<img src="<?php echo DIR; ?>/images/needs/glyph-instagram.jpg" alt="">
<div class="">
<span>Thanks for registering.</span>
<span>Hashtag is hosted freely, so you'll find it bit slow, because hosting company has allowed limited requests per minute.</span>
<span>Email verification is one of many features which has been removed, because the hosting company allows only 50 emails to be sent per day.</span>
<div class="dev_div_links">
<a href="<?php echo DIR; ?>/profile/<?php echo $universal->GETsDetails($session, "username"); ?>" class="sec_btn">Continue</a>
</div>
</div>
</div>
</div>
<?php include 'index_include/index_footer.php'; ?>