-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
66 lines (62 loc) · 2.17 KB
/
header.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
<?php session_start();
header('content-type: text/html; charset=utf-8'); ?>
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta http-equiv="ScreenOrientation" content="autoRotate:disabled">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/>
<title>LE HACKER DE LA BMI</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/menu.css">
<link rel="stylesheet" href="css/simon.css">
<link rel="stylesheet" href="css/casques.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.css" rel="stylesheet">
</head>
<body class="text-white" style="overflow: hidden">
<nav class="position-fixed fixed-top">
<div class="green digit countdown text-center" id="timer">45:00</div>
<?php include 'php/config.php';
include('php/countdown.php');
echo '<script src="js/countdown.js"></script><script>' . $countdown . '</script>';
?>
<div class="button">
<a class="btn-open" href="#"></a>
</div>
</nav>
<div class="overlay">
<div class="wrap">
<ul class="wrap-nav">
<li>
<a href="scanner.php">
<div class="menu-item"><img src="img/scanner.png"></div>
</a>
</li>
<li>
<a href="fakemail.php">
<div class="menu-item">
<img src="img/map.png"></div>
</a>
</li>
<li>
<a href="casques.php">
<div class="menu-item">
<img src="img/mail.svg"></div>
</a>
</li>
<li>
<a href="index.php">
<div class="menu-item">
<img src="img/indice.png"></div>
</a>
</li>
<li>
<a href="hackermail.php">
<div class="menu-item">
<img src="img/anonymous.svg"></div>
</a>
</li>
</ul>
</div>
</div>