forked from systers/FirstAide-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
officeOfInspectorGeneral.php
56 lines (51 loc) · 1.96 KB
/
officeOfInspectorGeneral.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
<?php
/*Created by Akanksha
Desc: Implementation of office of inspector general of 'Get Help now'
*/
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">Office of Inspector General</h1>
<hr class="line">
</div>
<!--opens popup to contact via SMS or Call-->
<button class="small-button" id="bt-cntnw" name="bt-cntnw" onclick="openPopup()">Contact Now</button>
<div class="block">
<p>
OIG is a resource for those who have been harmed by misconduct or criminal wrongdoing by a fellow Volunteer or Peace Corps Staff. They are independent from Peace Corps with law enforcement officers who have the unique authorities to help seek a fair resolution and, in appropriate cases, to seek prosecution in the United States or host country.
</p>
Learn more: <a href="http://www.peacecorps.gov/about/inspgen/" target="_blank">peacecorps.gov/OIG</a>
</div>
<!-- Popup for contact Now -->
<div id="popup-cnt" class="popup">
<div class="popup-content">
<span id="close-cnt" class="close"><img src="images/close-button.png" style="height: 15px;width: 15px;"></span>
<h3 class="text">Contact Office of Inspector General via</h3>
<button id="call" class="popup-button" onclick="make_call('2026922915')">Voice Call</button>
<button id="msg" class="popup-button" onclick="send_sms('2026922915')">Send Message</button>
</div>
</div>
</div><!--closing div of window-->
</center>
<script type="text/javascript" src="javascripts/popup.js"></script>
<script type="text/javascript" src="javascripts/twilio-sms.js"></script>
<script type="text/javascript" src="javascripts/twilio-call.js"></script>
</body>
</html>