24 lines
540 B
PHP
24 lines
540 B
PHP
<?php
|
|
/******************************************************************************
|
|
* YMS - Yacht Management Software
|
|
* Copyright (C) 2024 Thomas Hooge
|
|
*
|
|
* SPDX-License-Identifier: WTFPL
|
|
******************************************************************************/
|
|
|
|
require 'globals.inc';
|
|
$pagetitle = _('Checklists');
|
|
|
|
$id = gpc_get_int($_REQUEST, 'id', 0);
|
|
|
|
require 'header.php';
|
|
|
|
echo "<h1>$pagetitle</h1>\n";
|
|
?>
|
|
|
|
<p>Search will be implemented later.
|
|
This page is currently just a placeholder.</p>
|
|
|
|
<?php
|
|
include 'footer.php';
|