forked from systers/FirstAide-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
getHelpNow2.php
60 lines (57 loc) · 1.59 KB
/
getHelpNow2.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
<?php
/*Created by Akanksha
Desc: Form to navigate to PCSaves, Office of victim advocacy, Ofiice of inspector general and Office of civil rights and services
*/
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/gethelpnow-style.css"/>
</head>
<body>
<?php
include('menu.php');
?>
<center>
<div class="window">
<div>
<h1 class="text">Get Help Now</h1>
<hr class="line">
</div>
<div id="bw-arrow">
<a href="getHelpNow.php">
<img src="images/bw-arrow.png" style="height: 50px; width: 50px;">
</a>
</div>
<!--Navigate buttons-->
<div id="div1">
<table id="btn-table">
<tr>
<td>
<button class="button" onclick = "location.href='PCSaves.php';" id="bt-PCSaves" name="bt-PCSaves">PC Saves Anonymous Helpline</button>
</td>
<td>
<button class="button" onclick = "location.href='officeOfVictimAdvocacy.php';" id="bt-offVA" name="bt-offVA">Office of Victim Advocacy</button>
</td>
</tr>
<tr>
<td>
<button class="button" id="bt-offIG" name="bt-offIG" onclick = "location.href='officeOfInspectorGeneral.php';" >Office of Inspector General</button>
</td>
<td>
<button class="button" id="bt-offCRD" name="bt-offCRD" onclick = "location.href='officeOfCivilRightsAndDiversity.php';" >Office of Civil Rights and Diversity</button>
</td>
</tr>
</table>
</div>
</div>
</center>
</body>
</html>