Small changes to profile page, added friend request button

This commit is contained in:
Kevin Nobel
2017-01-11 14:00:10 +01:00
parent 019a89c865
commit cd93dcb719
5 changed files with 99 additions and 27 deletions

18
website/profile.php Normal file
View File

@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<?php
include("views/head.php");
?>
<body>
<?php
/*
* This view adds the main layout over the screen.
* Header, menu, footer.
*/
include("views/main.php");
/* Add your view files here. */
include("views/profile.php");
?>
</body>
</html>