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.
15 lines
237 B
PHP
15 lines
237 B
PHP
<!DOCTYPE html>
|
|
<?php
|
|
require_once "../lib/prelude.inc.php";
|
|
require_once "../lib/protected.inc.php";
|
|
?>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Meeting Minutes</title>
|
|
</head>
|
|
<body>
|
|
<h1>Meeting Minutes</h1>
|
|
</body>
|
|
</html>
|