-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy paththankyou.php
101 lines (79 loc) · 1.77 KB
/
thankyou.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
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
<?php
//this is the session check for this page
session_start();
include("dbconnect.php");
?>
<!DOCTYPE html>
<html>
<head>
<title>Thank you! - Axel</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<link rel="icon" href="logo.png">
<!--BOOTSTRAP CDN-->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
</head>
<style>
.box
{
font-size:22px;
margin:100px auto;
width:70%;
box-shadow: 0 0 6px 0 #ccc;
padding:50px;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
}
.button
{
background-color:#76D7C4;
margin-top:35px;
padding:10px;
width:300px;
color:white;
text-align:center;
border-radius:5px;
cursor:pointer;
transition:all 0.2s ease-in-out;
}
.button:hover
{
background-color:#76D7C4;
}
#title
{
font-size:40px;
margin-bottom:40px;
}
@media screen and (max-width:769px)
{
.paymentbox
{
width:90%;
font-size:20px;
}
#title
{
font-size:32px;
}
.button
{
width:100%;
}
}
</style>
<body>
<div class="input-group mb-3 box">
<span id="title">SWEET!🍭</span>
<span style="text-align:justify">First things first, thank you🤩 for registering with Axel!<b> A verification mail has been sent to your e-mail ID.</b> Open it and click on the verification link to activate your account!</span>
<div class="button" onclick="gotohome()">Go to homepage</div>
</div>
</body>
<script>
function gotohome() {
window.location.href="index.php";
}
</script>
</html>