<?php

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