-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwatch.php
33 lines (32 loc) · 1.15 KB
/
watch.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
if (isset($_GET['video'])) {
//pobranie danych o materiale instruktaowym z bazy danych
//jako ze to strona testowa takich materilow nie ma
} else {
header('Location: index.php');
exit();
}
?>
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="style/css/watch.css">
<link rel="stylesheet" type="text/css" href="style/css/navbar.css">
<link rel="stylesheet" type="text/css" href="style/css/footer.css">
<!--Bootstrap-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<?php include 'navbar.php'; ?>
<div class="container">
<div class="embed-responsive embed-responsive-16by9">
<iframe src="https://www.youtube.com/embed/64cvDqZPkos" frameborder="0" allowfullscreen></iframe>
</div>
</div>
<?php include 'footer.php'; ?>
</body>
</html>