<?php require_once ( 'phpFormular/form.php' ); ?>
<!-- Formular ganz oben einbinden (kein HTML etc. vorher!!) -->
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>PHP Formular</title>
<link rel="stylesheet" href="demo.css">
<!-- CSS & jQuery für das Formular einbinden -->
<link rel="stylesheet" href="phpFormular/public/css/main.css">
<script>window.jQuery || document.write('<script src="phpFormular/public/js/jquery-1.9.1.min.js"><\/script>');</script>
</head>
<body>
<div id="pageBox">
<!-- Ausgabe Formular -->
<?php $formTPL->showReplaced ( FALSE ); ?>
</div>
</body>
</html>