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.
21 lines
406 B
PHP
21 lines
406 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: sean
|
|
* Date: 10/29/17
|
|
* Time: 6:59 PM
|
|
*/
|
|
require_once "../lib/prelude.inc.php";
|
|
require_once "../lib/logins.inc.php";
|
|
require_once "../lib/LoginController.php";
|
|
|
|
$controller = new LoginController($_GET,$_POST,$logins);
|
|
|
|
if($controller->validLogin()){
|
|
|
|
$_SESSION[LOGIN] = "We really out here.";
|
|
}
|
|
|
|
header("Location: " . ROOT . $controller->getRedirect());
|
|
|