-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
75 lines (69 loc) · 2.99 KB
/
index.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
73
74
75
<?php include 'head.php';
session_start();?>
<style type="text/css">
button{
position:relative;
left:50%;
}
.containerx{
width:100%;
}
</style>
<!-- BODY STARTS HERE -->
<body>
<!--HEADER -->
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<!-- Logo -->
<div class="row"> <div class=col-md-1> <a href="index.php"><embed height="50" width="50" src="21.png"></a></div>
<div class="col-md-11">
<div class="navbar-header">
<a href="index.php" class="navbar-brand kalam">Phishing Email Detection Game</a>
</div>
<!-- Menu Items -->
<div class="collapse navbar-collapse" id="mainNavBar">
<ul class="nav navbar-nav">
<li class="active"> <a href="index.php" class="kalam">Home</a> </li>
<li> <a href="instruction.php" class="kalam">Instructions</a> </li>
<li> <a href="contact.php" class="kalam">Contact Us</a> </li>
</ul>
</div>
</div></div></div>
</nav>
<!-- BODY -->
<div class="container-fluid">
<div class="row">
<div class="col-lg-7">
<iframe id=impress width=100% height="580px" src ="impress2.html" frameborder="0"></iframe>
</div>
<div class="col-lg-5">
<div class="jumbotron">
<!-- TEXT STARTS -->
<h2 class="text-center kalam">Phishing Email Detection Game</h2><br>
<p>The purpose of this study is to examine individual's understanding of phishing emails. You will be shown a series of emails and you will have to identify whether each email is genuine or a phishing email. <br><br><b>The study will take approximately 30 minutes.</b> If you are willing to participate, please click the button below.</p>
<!-- <p>The motivation behind developing this game is to<b> improve the causal understanding of the people about Phishing.</b><br>Previous research shows that<b> public’s response</b> towords <b>Phishing emails </b> is very different</b> from what it ought to be. <br>
This game is designed to <b>increase public awareness</b> about Phishing Emails and <strong>balance risk perceptions</strong>. -->
</p>
<!--BUTTON -->
<div class="container">
<a href="index2.php"><button type="button" class="btn btn-primary btn-lg">PLAY</button></a>
</div>
</div>
</div>
</div>
</div>
<!--FOOTER -->
<?php include 'footer.php'; ?>
</body>
</html>
<!-- JAVASCRIPT FOR AUTOMATIC REFRESHING OF frame embedded in the code page -->
<script type = "text/javascript">
window.onload = function() {
setInterval(function refresh() {
document.getElementById('impress').contentDocument.location.reload(true);
}, 5500);
}
</script>
<?php
session_destroy();
?>