-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsuccess.php
65 lines (46 loc) · 1.33 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
<?php
session_start();
if (isset($_SESSION['loggedin']) && $_SESSION['loggedin'] == true) {
?>
<!DOCTYPE html>
<html>
<head>
<title>Hacking</title>
<meta charset="UTF-8">
<link rel='stylesheet' href='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css'><link rel="stylesheet" href="./style-success.css">
<style>
button {
background-color: rgba(255,255,255,0.5);
border-radius: 10px;
color: black;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
border: none;
}
</style>
</head>
<body>
<div id="particles-js"></div>
<div class="login-form">
<h1><b>Hacking<b></h1>
<p align="center"><h2>You have successfully logged in!</h2><p align="center">
<br> <button onclick="window.location.href='logout.php';">
Logout
</button>
<br><br>
<p align="center">©️ made by <a href="https://technik.xn--schchner-2za.de">technik.schächner.de</a><p align="center">
</form>
<div id="particles-js"></div>
<!-- partial -->
<script src='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css'></script>
<script src='https://code.jquery.com/jquery-1.11.1.min.js'></script><script src="./script.js"></script>
</body>
<?php
} else {
header("Location: index.html");
exit;
}
?>