-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaccess.php
More file actions
executable file
·22 lines (19 loc) · 878 Bytes
/
access.php
File metadata and controls
executable file
·22 lines (19 loc) · 878 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?
include("include/session.php");
include("include/functions.php");
if(!$session->logged_in){
$url = curPageUrl();
header("Location: main.php?returl=$url");
}
else{
$title = "Connected Mathematics - Streaming Access";
include 'head.php';
?>
<h2>Access to Videos</h2>
<p>The goal in creating these videos is twofold: to help professional development leaders and to study the use of video as a professional development tool. To gain access to the videos and support materials, leaders must attend leadership training sponsored by CMP at Michigan State University, subsequently outline their purpose in using the video, and agree to supply feedback. A leader who has fulfilled these conditions is then given a password to access the videos.</p>
<a href="#top">Back to Top</a>
<img src="streaminglogo.png" alt="CMP Logo" />
<?
include 'foot.php';
}
?>