-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
34 lines (26 loc) · 894 Bytes
/
index.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
34
<?php
session_start();
$_SESSION['page'] = 'index';
?>
<!DOCTYPE html>
<html lang="ru, en">
<head>
<meta charset="utf-8">
<link rel='stylesheet' href='css/index.css'>
<title>Основная страница</title>
</head>
<body>
<?php require "blocks/header.php" ?>
<?php // TODO: добавить логику в header -- смена h1 и набора кнопок ?>
<?php require "blocks/sidenav.php" ?>
<div class="index_main">
<p>
<?php echo ($_СOOKIE['client']); ?>
Lorem ipsum dolor sit amet, illum definitiones no quo, maluisset concludaturque et eum,
altera fabulas ut quo. Atqui causae gloriatur ius te, id agam omnis evertitur eum.
Affert laboramus repudiandae nec et. Inciderint efficiantur his ad.
Eum no molestiae voluptatibus.</p>
<img src="img/images.jpeg" alt="cinema" width = 100%>
</div>
</body>
</html>