92 lines
1.4 KiB
PHP
92 lines
1.4 KiB
PHP
<?php
|
|
|
|
require_once 'includes/config.php';
|
|
require_once 'includes/auth.php';
|
|
require_once 'includes/functions.php';
|
|
|
|
requireLogin();
|
|
|
|
$username = $_SESSION['user'];
|
|
|
|
$languagePath =
|
|
userPath($username) .
|
|
'/languages';
|
|
|
|
$languages = [];
|
|
|
|
if (is_dir($languagePath)) {
|
|
|
|
$languages =
|
|
array_diff(
|
|
scandir($languagePath),
|
|
['.', '..']
|
|
);
|
|
}
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Dashboard</title>
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="theme-color" content="#222">
|
|
|
|
<link rel="manifest" href="/manifest.json">
|
|
<link rel="stylesheet" href="/assets/css/style.css">
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/assets/img/apple-touch-icon.png">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/assets/img/favicon.ico">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/assets/img/favicon-16x16.png">
|
|
</head>
|
|
<body>
|
|
|
|
<div class="container">
|
|
|
|
<div class="card">
|
|
|
|
<h1>Dashboard</h1>
|
|
|
|
<p>
|
|
Welkom,
|
|
<?= htmlspecialchars($username) ?>
|
|
</p>
|
|
|
|
<p>
|
|
<a href="logout.php">
|
|
Uitloggen
|
|
</a>
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<div class="card">
|
|
|
|
<h2>Mijn talen</h2>
|
|
|
|
<p>
|
|
<a href="add_language.php">
|
|
Nieuwe taal
|
|
</a>
|
|
</p>
|
|
|
|
<ul>
|
|
|
|
<?php foreach($languages as $lang): ?>
|
|
|
|
<li>
|
|
<a href="language.php?lang=<?= urlencode($lang) ?>">
|
|
<?= htmlspecialchars($lang) ?>
|
|
</a>
|
|
</li>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|