logout.php 161 B

12345678910
  1. <?php
  2. require_once '../includes/config.php';
  3. require_once '../includes/auth.php';
  4. $auth = new Auth();
  5. $auth->logout();
  6. header('Location: login.php');
  7. exit;
  8. ?>