<?php
include ('../system/system.php');
$title = 'Задания';
include ('../system/head.php');
if(!$user) {
header('location: /index.php');
exit();
}
echo '<div class="dia_block"><div style="float: left"><img src="/images/icons/teacher.png"> </div> <div class="dialog small"> Приветствую тебя <b>'.$user['login'].'</b>! <br> У меня есть несколько заданий для тебя!</div></div>';
include ('../system/foot.php');
?>