mirror of https://github.com/BOINC/boinc.git
14 lines
145 B
PHP
14 lines
145 B
PHP
|
<?php
|
||
|
|
||
|
include_once("util.inc");
|
||
|
|
||
|
session_start();
|
||
|
session_destroy();
|
||
|
|
||
|
page_head("Logged out");
|
||
|
|
||
|
echo "You are now logged out";
|
||
|
|
||
|
page_tail();
|
||
|
?>
|