Files
WebDB/website/public/chat.php
2017-01-18 12:08:53 +01:00

26 lines
466 B
PHP

<!DOCTYPE html>
<html>
<head>
<?php include("../views/head.php"); ?>
<style>
@import url("styles/chat.css");
</style>
<script src="js/sendMessage.js"></script>
</head>
<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/chat-view.php");
/* This adds the footer. */
include("../views/footer.php");
?>
</body>
</html>