mirror of
https://github.com/myronblair/tomsjavajive-app
synced 2026-06-30 09:40:59 -05:00
11 lines
187 B
PHP
11 lines
187 B
PHP
<?php
|
|
/**
|
|
* Tom's Java Jive - Customer Logout
|
|
*/
|
|
|
|
require_once __DIR__ . '/includes/auth.php';
|
|
|
|
CustomerAuth::logout();
|
|
setFlash('success', 'You have been signed out.');
|
|
redirect('/');
|