-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
101 lines (90 loc) · 3.42 KB
/
index.php
File metadata and controls
101 lines (90 loc) · 3.42 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<?php
ini_set('display_errors', '1');
include 'website/DBconnection.php';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Smishing dashboard</title>
<!-- MATERIAL ICONS -->
<link href="https://fonts.googleapis.com/css?family=Material+Icons|Material+Icons+Outlined|Material+Icons+Two+Tone|Material+Icons+Round|Material+Icons+Sharp" rel="stylesheet">
<link rel="stylesheet" href="website/style.css">
<link rel="stylesheet" href="website/cardStyle.css">
<!-- JQUERY -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
</head>
<body>
<div class="containter">
<div class="left">
<ul>
<li>
<a id="title-link" href="#">
<span id="fbk-logo" class="icon"><img src="website/images/fbk-logo-blue.png" alt=""></span>
<span class="icon"><span class="material-icons-round">security_update_warning</span></span>
<span class="title">Smis<span style="color: #ff7782;">hing</span></span>
</a>
</li>
<li>
<a href="#">
<span class="icon"><span class="material-icons-round">grid_view</span></span>
<span class="title">Dashboard</span>
</a>
</li>
<!--
<li>
<a href="#">
<span class="icon"><span class="material-icons-round">query_stats</span></span>
<span class="title">Statistic</span>
</a>
</li>
<li>
<a href="#">
<span class="icon"><span class="material-icons-round">help</span></span>
<span class="title">Help</span>
</a>
</li>
-->
</ul>
</div>
<!-- main -->
<div class="main">
<div class="topbar">
<div class="toggle">
<span class="material-icons-round">menu</span>
</div>
</div>
<!-- cardBoxes -->
<?php require 'website/cards.php' ?>
<!-- teldata -->
<?php require 'website/teldata.php' ?>
<!-- ioc / organizations -->
<?php require 'website/organizations.php' ?>
</div>
</div>
<script src="website/index.js"></script>
<!-- ================= Swiper ================= -->
<script src="https://unpkg.com/swiper/swiper-bundle.min.js"></script>
<!-- Initialize Swiper -->
<script>
var swiper = new Swiper(".mySwiper", {
spaceBetween: 30,
centeredSlides: true,
autoplay: {
delay: 5000,
disableOnInteraction: true,
},
pagination: {
el: ".swiper-pagination",
clickable: true,
},
navigation: {
nextEl: ".swiper-button-next",
prevEl: ".swiper-button-prev",
},
});
</script>
</body>
</html>