17 lines
330 B
PHP
17 lines
330 B
PHP
<?php defined('BLUDIT') or die('Bludit CMS.');
|
|
|
|
if( $_SERVER['REQUEST_METHOD'] == 'POST' )
|
|
{
|
|
$username = Sanitize::html($_POST['username']);
|
|
$password = Sanitize::html($_POST['password']);
|
|
|
|
if( $Login->verifyUser($username, $password) )
|
|
{
|
|
Redirect::page('admin', 'dashboard');
|
|
}
|
|
else
|
|
{
|
|
Alert::set('Login failed');
|
|
}
|
|
}
|