-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwarning.php
More file actions
88 lines (72 loc) · 3.8 KB
/
Copy pathwarning.php
File metadata and controls
88 lines (72 loc) · 3.8 KB
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
<?php
session_start();
if (!isset($_SESSION['username']))
{
$_SESSION['msg'] = "You have to log in first";
header('location: login');
}
//setting variables
require_once "config.php";
$loggedInUsername = $_SESSION['username'];
$id = $_SESSION['id'];
?>
<html>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<head>
<title>Warning | Crypt@trix 21.0</title>
<link href='https://fonts.googleapis.com/css?family=Raleway:400,100,200,300,400italic,500,100italic,700'
rel='stylesheet' type='text/css'>
<script src="js/fontawesome.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Dosis|Open+Sans" rel="stylesheet">
<link href='css/main.css' rel='stylesheet' type='text/css'>
<link rel="icon" href="images/ordin.png" type="image/png">
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js"
integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p" crossorigin="anonymous">
</script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.min.js"
integrity="sha384-Atwg2Pkwv9vp0ygtn1JAojH0nYbwNJLPhwyoVbhoPwBhjQPR5VtM2+xf0Uwh9KtT" crossorigin="anonymous">
</script>
<script src="https://code.jquery.com/git/jquery-git.min.js" crossorigin="anonymous">
</script>
</head>
<body onload="load()">
<div id="warning">
<center>
<div class="warning-txt">
<div class="row">
<div class="col-md-2"></div>
<div class="col-md-8">
<h1>warning</h1>
<p>The following website contains scenes of a disturbing nature.</p>
<p>The website will occasionally manipulate graphics and sound in an unusual way. This is
completely normal, and it is unlikely to be a problem with either the website or your sanity.</p>
<p>The website may contain loud noises, flashing images, jumpscares, mentions of gore.</p>
<p><i class="fas fa-headphones"></i> Use Headphones For Better Experience</p>
<form method="post" action="proceed.php">
<button type="button" class="btn btn-primary button"
onclick="this.value='Submitting...'; this.form.submit();" type="submit">
Proceed
</button>
</form>
</div>
<div class="col-md-2"></div>
</div>
</div>
</center>
</div>
<script src="js/index.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.14.5/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.14.5/firebase-database.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.14.5/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.14.5/firebase-storage.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.14.5/firebase-analytics.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous">
</script>
<script src="js/init.js"></script>
</body>
</html>