1 |
c058c65c
|
Anděl Ondřej
|
<?php session_start()?>
|
2 |
38cfc4d9
|
Milan Vacek
|
<!doctype html>
|
3 |
|
|
<html >
|
4 |
|
|
<head>
|
5 |
|
|
<meta charset="utf-8">
|
6 |
|
|
<title>Dalimilova kronika</title>
|
7 |
|
|
<!-- css -->
|
8 |
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
|
9 |
|
|
<link rel="stylesheet" href="view/style.css">
|
10 |
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
11 |
|
|
|
12 |
|
|
<!-- jQuery library -->
|
13 |
|
|
<script src="https://code.jquery.com/jquery-3.1.1.slim.min.js"></script>
|
14 |
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js"></script>
|
15 |
|
|
|
16 |
|
|
<!-- JavaScript -->
|
17 |
|
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js"></script>
|
18 |
|
|
</head>
|
19 |
|
|
<body>
|
20 |
|
|
|
21 |
|
|
<div class="container-fluid">
|
22 |
|
|
<?php include "./view/header.html" ?>
|
23 |
|
|
<?php include "./view/menu.php" ?>
|
24 |
|
|
|
25 |
|
|
<div class="row app-content">
|
26 |
|
|
<div class="col-xs-12 col-sm-12 p-4 content d-flex">
|
27 |
777638f1
|
Anděl Ondřej
|
<?php include "./view/contents/userManualContent.html" ?>
|
28 |
38cfc4d9
|
Milan Vacek
|
</div>
|
29 |
|
|
</div>
|
30 |
|
|
<?php include "./view/footer.html" ?>
|
31 |
|
|
</div>
|
32 |
|
|
<?php include "./view/modals/loginModal.html" ?>
|
33 |
|
|
<?php include "./view/modals/invalidLoginModal.html" ?>
|
34 |
|
|
</body>
|
35 |
|
|
</html>
|