summaryrefslogtreecommitdiffstats
path: root/contact.php
blob: 9b9384c2edba0ced3430b2c98f5a678226efe77c (plain)
1
2
3
4
5
6
7
8
9
10
<?php
session_start();
require_once('vendor.inc.php');

$smarty = new Smarty;

$smarty->assign('loggedin', isset($_SESSION['username']));

$smarty->display('contact.tpl');
?>