-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
84 lines (72 loc) · 2.97 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
76
77
78
79
80
81
82
83
84
<?php
session_start();
$mess=isset($_GET["mess"]) ? "<p class='text-error'>".$_GET['mess']. "</p>" : "";
if(!isset($_COOKIE['sign'])) {
header("location:firsttime.php");
}
?>
<!DOCTYPE html>
<html lang="sv">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" type="text/css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/css/materialize.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<script type="text/javascript" src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/js/materialize.min.js"></script>
<!-- Skript för för hamburgermeny för mindre skärmar -->
<script>
$(document).ready(function () {
$(".button-collapse").sideNav();
});
$(document).ready(function() {
M.updateTextFields();
});
</script>
<!-- CSS kod -->
<style type="text/css">
.footer-name2{
padding-left: 500px;
}
.main-text{
padding-left: 50px;
padding-right: 50px;
}
</style>
<title>Gymnasiearbete phishing - Email Phishing</title>
</head>
<body>
<div class="navbar-fixed">
<nav class="blue darken-3">
<div class="nav-wrapper">
<a href="#" class="brand-logo">Gymnasiearbete phishing</a>
<a href="#" data-activates="mobile-demo" class="button-collapse"><i class="material-icons">menu</i></a>
<ul class="right hide-on-med-and-down">
<li><a href="index.php">Start</a></li>
<li><a href="teori.php">Teori</a></li>
<li><a href="https://www.github.com/Zingo21/gymnasiearbete-phishing">Github</a></li> <!-- Lägg till länkar vid behov -->
</ul>
</div>
</nav>
</div>
<ul class="side-nav" id="mobile-demo">
<li><a class="waves-effect waves-light btn blue darken-3" href="#"><i class="material-icons left">home</i>Startsida</a></li>
<li><a class="waves-effect waves-light btn blue darken-3" href="#">Phishing</a></li>
<li><a class="waves-effect waves-light btn blue darken-3">Länk</a></li>
<li><a class="waves-effect waves-light btn blue darken-3" href="https://www.github.com/Zingo21/gymnasiearbete-phishing">Github</a></li><!-- Lägg till länkar vid behov -->
</ul>
<header class="main-text">
<h1>Phishing</h1>
<h5><a href="fooling.php" class="waves-effect waves-light btn blue darken-1">Gå till applikationen</a></h5>
<h5><a href="teori.php" class="waves-effect waves-light btn blue darken-1">Läs teorin</a></h5>
<?php
echo $mess;
?>
<br>
<br>
</header>
<br>
</body>
</html>