forked from systers/FirstAide-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsafetyTools2.php
55 lines (52 loc) · 1.35 KB
/
safetyTools2.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
<?php
/*Created by Akanksha
Desc: Navigation for features of safety tools(part2)
*/
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="bw-arrow">
<a href="safetyTools1.php">
<img src="images/bw-arrow.png" style="height: 50px; width: 50px;">
</a>
</div>
<!--Navigation buttons-->
<table id="btn-table">
<tr>
<td>
<button class="button" id="bt-bystander" name="bt-bystander" onclick="location.href='bystanderIntervention.php';">Bystander Intervention</button>
</td>
<td>
<button class="button" id="bt-safetyBasic" name="bt-safetyBasic" onclick="location.href='safetyPlanBasics.php';">Safety Plan Basics</button>
</td>
</tr>
<tr align="center" id="tr-2" colspan="2">
<td>
<button class="button" id="bt-safetyWorksheet" name="bt-safetyWorksheet" onclick="location.href='safetyPlanWorksheet.php';">Safety Plan Worksheet</button>
</td>
</tr>
</table>
</div><!--closing div for window-->
</center>
</body>
</html>