11 lines
		
	
	
		
			230 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			230 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| $app = require '../app/inc.php';
 | |
| 
 | |
| if (!$app->user->loggedIn)
 | |
| {
 | |
|     $app->redirect('index.php');
 | |
| }
 | |
| 
 | |
| $app->view('template/header', ["title" => "Bekreft avlogging"]);
 | |
| $app->view('confirm-logout');
 | |
| $app->view('template/footer'); |