forked from systers/FirstAide-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
welcome.php
57 lines (56 loc) · 1.39 KB
/
welcome.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
<?php
/*
Created by Akanksha
Desc: Welcome page - Displays recommended pages
*/
if(!isset($_SESSION)){
session_start();
}
if(!isset($_SESSION['email']))
{
header("location: login.php");
}
else
$_SESSION['welcomeopened'] = 1; //to prevent going back to progressBar(use in progressBar.php)
?>
<!DOCTYPE html>
<html>
<head>
<title>FirstAide</title>
<link rel="stylesheet" type="text/css" href="css files/welcome-style.css"/>
</head>
<body>
<?php
include('menu.php');
?>
<center>
<div class="window">
<div>
<h1 class="text">Welcome to First Aide</h1>
<hr class="line">
<h2 class="text">Recommended Pages to Get Started</h2>
</div>
<table id="buttons-table">
<tr>
<td>
<button class="button" id="bt-safetystg" name="bt-safetystg">Safety Strategies Helpline</button>
</td>
<td>
<button class="button" id="bt-helping" name="bt-helping">Helping a friend or Community member</button>
</td>
</tr>
<tr>
<td>
<button class="button" id="bt-ghana" name="bt-ghana">Things to know before you travel to Ghana</button>
</td>
<td>
<button class="button-org" id="bt-peerstng" name="bt-peerstng">
Set your peer counselling preferences<img src="images/settings.png" style="height: 20px;width: 20px;" />
</button>
</td>
</tr>
</table>
</div>
</center>
</body>
</html>