71 lines
1.2 KiB
PHP
71 lines
1.2 KiB
PHP
<?php
|
|
|
|
require_once 'includes/config.php';
|
|
require_once 'includes/auth.php';
|
|
require_once 'includes/functions.php';
|
|
|
|
requireLogin();
|
|
|
|
$lang =
|
|
$_GET['lang'] ?? '';
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
|
|
|
|
$title =
|
|
sanitize(
|
|
$_POST['title']
|
|
);
|
|
|
|
header(
|
|
'Location: import_csv.php?lang=' .
|
|
urlencode($lang) .
|
|
'&list=' .
|
|
urlencode($title)
|
|
);
|
|
|
|
exit;
|
|
}
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Nieuwe lijst</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>Nieuwe woordenlijst</h1>
|
|
|
|
<form method="post">
|
|
|
|
<input
|
|
name="title"
|
|
placeholder="Titel"
|
|
required>
|
|
|
|
<button>
|
|
Verder
|
|
</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|