forked from systers/FirstAide-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprogressBar.php
37 lines (35 loc) · 857 Bytes
/
progressBar.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
<?php
/*
Created by Akanksha
Desc: Progress Bar after welcome page
*/
if(!isset($_SESSION))
session_start();
if(isset($_SESSION['welcomeopened'])) //session is set in welcome page, to prevent cmng to this page after logging in
{
header("location: welcome.php");
}
if(!isset($_SESSION['email']))
{
header("location: login.php");
}
?>
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="css files/progress-bar.css"/>
</head>
<body onload="move()">
<center>
<div>
<h1 class="text">First Aide</h1>
<hr id="line">
<h2 class="text">A Confidentiality Safety Resource for Peace Corps Volunteers</h2>
</div>
<div id="progress">
<div id="bar"></div>
</div>
</center>
<script type="text/javascript" src="javascripts/progressBar.js"></script>
</body>
</html>