Files
code-cegled/index.php
2016-11-24 19:20:10 +01:00

80 lines
1.3 KiB
PHP
Executable File

<!DOCTYPE html>
<head>
<meta charset="utf-8">
<style>
a:link {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
nav {
width: 100%;
background-color: #000;
padding: 10px 0px;
}
nav a {
color: #fff;
margin: 10px;
text-decoration: none;
}
nav a:hover {
text-decoration: underline;
}
td.create {
padding: 15px 0px;
}
td.create a {
line-height: 18px;
font-size: 18px;
}
.name_tag {
width: 200px;
text-align: left;
padding: 10px 0px 10px 10px;
margin: 5px;
background-color: #e2edff;
cursor: pointer;
}
.name_tag_checked {
width: 200px;
text-align: left;
padding: 10px 0px 10px 10px;
margin: 5px;
background-color: #1eea0b;
cursor: pointer;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script type="text/javascript">
$( document ).ready(function() {
console.log( "ready!" );
});
</script>
<title>Badminton Coach v 0.1</title>
<?php
require('common.php');
require('event_handler.php');
$page = new page();
?>
</head>
<body>
<nav>
<?= $page->get_page_nav();?>
</nav>
<main>
<?= $page->get_page_content();?>
</main>
</body>
</html>