forked from ankit039/simple_image_quiz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
q3.php
40 lines (36 loc) · 1.04 KB
/
q3.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
<?php
session_start();
if(isset($_SESSION["confirm"])=='feviquick')
{?>
<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="q3connect.php" method="post">
<div class="box black">
<div align="center">
<br><br><br>
<h1>WAR FOR TREZOR</h1>
<img src="asset/image/3.jpg">
<div class="container">
<input type="text" placeholder="Your Answer" name="answer">
<br>
<button type="submit" name="submit" ><strong>Submit</strong></button>
<br><br>
</div>
</div>
</div>
</form>
</body>
</html>
<?php
}
else{
echo ('<meta http-equiv="refresh" content="0; URL=q1.php">');
}
?>