16 lines
425 B
PHP
16 lines
425 B
PHP
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title><?= $title ?> | Installer</title>
|
||
|
<link rel="stylesheet" href="/css/dragon.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="container">
|
||
|
<h1>Dragon Knight Installation</h1>
|
||
|
<h2><?= $title ?></h2>
|
||
|
<?= render("install/$step", $data) ?>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|