Lectures/admin/logout.php

6 lines
96 B
PHP
Raw Permalink Normal View History

2025-02-14 17:12:59 +01:00
<?php
require_once '../includes/auth.php';
Auth::logout();
header('Location: login.php');
exit;