Files
code-cegled/index.php
2016-11-25 22:04:57 +01:00

75 lines
1.4 KiB
PHP
Executable File

<!DOCTYPE html>
<head>
<style>
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
body {
margin: 0px;
}
a:link {
text-decoration: none;
}
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>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="/_css/form.css">
<link rel="stylesheet" type="text/css" href="/_css/nav.css">
<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>