-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomplete.php
More file actions
37 lines (33 loc) · 959 Bytes
/
Copy pathcomplete.php
File metadata and controls
37 lines (33 loc) · 959 Bytes
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
<?php
session_start();
if(isset($_SESSION["confirm"])=='tesla')
{?>
<html>
<head>
<meta charset="UTF-8">
<title>Quiz</title>
<link rel="icon" href="mil.png" type="image/x-icon">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="asset/css/style.css">
</head>
<body>
<form action="q1connect.php" method="post">
<div class="box black">
<div align="center">
<br><br><br>
<h1>WAR FOR TREZOR</h1>
<div class="container"><br><br><br><br>
<h1 style="color:black">Thanks for playing WAR FOR TREZOR!</h1>
<br><br>
</div>
</div>
</div>
</form>
</body>
</html>
<?php
}
else{
echo ('<meta http-equiv="refresh" content="0; URL=q1.php">');
}
?>