forked from systers/FirstAide-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
safetyTools1.php
58 lines (55 loc) · 1.56 KB
/
safetyTools1.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
<?php
/*Created by Akanksha
Desc: Navigation to features of safety tools (part 1)
*/
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">Safety Tools</h1>
<hr class="line">
</div>
<div id="fw-arrow">
<a href="safetyTools2.php">
<img src="images/fw-arrow.png" style="height: 50px; width: 50px;">
</a>
</div>
<!--Navigation buttons-->
<table id="btn-table">
<tr>
<td>
<button class="button" onclick = "location.href='personalSecurityStrategies.php';" id="bt-personalstrategies" name="bt-personalstrategies">Personal Security Strategies</button>
</td>
<td>
<button class="button" onclick = "location.href='radar.php';" id="bt-radar" name="bt-radar">RADAR</button>
</td>
</tr>
<tr>
<td>
<button class="button" id="bt-coping" name="bt-coping" onclick = "location.href='copingWithUnwantedAttentionStrategies.php';" >Coping with unwanted Attention Strategies</button>
</td>
<td>
<button class="button" id="bt-commonalities" name="bt-commonalities" onclick = "location.href='commonalitiesOfSexualPredators.php';" >Commonalities of Sexual Predators</button>
</td>
</tr>
</table>
</div><!--closing div for window-->
</center>
</body>
</html>