movmaker-webui/logout.php

6 lines
163 B
PHP

<?php
require __DIR__ . '/auth.php';
mvlog_logout();
header('Cache-Control: no-store, no-cache, must-revalidate, max-age=0');
header('Location: index.php');
exit;