-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresult.php
72 lines (54 loc) · 2.66 KB
/
result.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
<!DOCTYPE html>
<html lang="en">
<?php include('conf.php'); ?>
<head>
<title><?=$title;?></title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>
</head>
<body class="<?=$bg?>">
<div class="container-fluid bg-danger text-white text-center p-2">
<h4>MindReader</h4>
</div>
<div class="container-fluid">
<div class="row mt-4 justify-content-center">
<div class="col-12 col-sm-12 col-md-10 col-lg-7">
<div class="card shadow-lg <?=$bg?>">
<div class="card-body justify-content-center">
<div class="title1 py-4 text-center">
This was Symbol <span class="text-danger">in your mind!</span>
</div>
<div class="text-center">
<hr>
<h1>
<i class="<?php echo $_GET['mr'];?> fa-5x"></i>
</h1>
</div>
<div class="text-center">
<a href="index.php" class="btn btn-info btn-block btn-lg mt-4 bg-red font-weight-bold text-white border-white">Restart</a>
</div>
</div>
</div>
<div class="text-center mt-3">
<small>
<a class="text-dark" target="_blank" href="privacy.php">Privacy Policy</a> |
<a class="text-dark" target="_blank" href="terms.php">Terms & Conditions</a> |
<a class="text-dark" target="_blank" href="disclaimer.php">Disclaimer</a> |
<a class="text-dark" target="_blank" href="credits.php">Credits</a>
<br>
This website in no way is affiliated with Facebook or any Facebook entities. Once you leave Facebook the responsibility no longer is on their site. We make every attempt to clearly state and show all proof. We do not sell your email or any information. Can Spam compliant.
</small>
</div>
</div>
</div>
</div>
</body>
</html>