-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathexecsum.php
More file actions
62 lines (44 loc) · 1.8 KB
/
execsum.php
File metadata and controls
62 lines (44 loc) · 1.8 KB
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
61
62
<?php require_once('includes/functions.php'); ?>
<?php require_once('includes/functions-execsum.php'); ?>
<?php session_handler(); ?>
<?php $link = db_connect(); ?>
<?php auth_check($link); ?>
<!DOCTYPE html>
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--><html lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta name="description" content="Art Institute Syllabus Generator">
<meta name="author" content="William Mead">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Syllabus Generator Excutive Summaries</title>
<link href='http://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,200italic' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="stylesheets/base.css" type="text/css">
<link rel="stylesheet" href="stylesheets/layout.css" type="text/css">
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script type="text/javascript" src="js/jquery-1.8.3.min.js"></script>
<script type="text/javascript" src="js/tinymce/jquery.tinymce.min.js"></script>
<script type="text/javascript" src="js/script-execsum.js"></script>
</head>
<body>
<?php page_loader($link, 'includes/execsum/execsum-pageloader.php'); ?>
</body>
<script type="text/javascript">
document.getElementById('deleteexecsum').onclick = haltDelete;
function haltDelete(evt)
{
if( confirm("Are you sure you want to complete delete this exectutive summary?") ) {
return TRUE;
}
else {
evt.preventDefault();
}
}
</script>
</html>
<?php db_disconnect($link); ?>