<?php

require_once 'Autoloader.php';
// create a new controller to create new products
$controller = new CreateController();
// let the controller handle the request
$controller->handleRequest();
// render the page and print it
echo $controller->displayPage();