removed htaccess in favor of a custom authentication. Most pages are linking to the secure login screen now. I added a minutes page to keep the meeting minutes. Successful logins.
16 lines
224 B
PHP
16 lines
224 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: sean
|
|
* Date: 10/29/17
|
|
* Time: 6:49 PM
|
|
*/
|
|
require_once "prelude.inc.php";
|
|
|
|
if(!$open){
|
|
if(!isset($_SESSION[LOGIN])){
|
|
header("Location: ../secure/index.php");
|
|
}
|
|
}
|
|
|