forked from systers/FirstAide-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
personalSecurityStrategies.php
47 lines (46 loc) · 1.18 KB
/
personalSecurityStrategies.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
<?php
/*Created by Akanksha
Desc: Personal Security Strategies of 'Safety tools'
*/
if(!isset($_SESSION))
session_start();
if(!isset($_SESSION['email']))
{
header("location: login.php");
}
?>
<!DOCTYPE html>
<html>
<head>
<title>FirstAide</title>
<link rel="stylesheet" type="text/css" href="css files/safety-tools.css"/>
</head>
<body>
<?php
include('menu.php');
?>
<center>
<div class="window">
<div>
<h1 class="text">Personal Security Strategies</h1>
<hr class="line">
</div>
<!--Add class="dragscroll" to any div whenever wrapped content is needed to have horizontal drag scroll-->
<div class="dragscroll">
<table class=""><!--add the class here according to the number of blocks to be used Example: greaterthan5-blocks-content if blocks are more than 5 ref:safety-tools.css-->
<tr>
<td class="block">
Content yet to be provided..
</td>
<td class="block">
Content yet to be provided...
</td>
</tr>
</table>
</div>
</div>
</center>
<script type="text/javascript" src="javascripts/jquery-1.12.4.min.js"></script>
<script type="text/javascript" src="dragscroll.js"></script>
</body>
</html>