-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
60 lines (58 loc) · 1.71 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?
session_start();
require 'autoload.php';
//include "handlers/checkSession.php";
//$res=check_session();
//if($res=='unauthorized')
//{
// include "authorization.php";
//}
//else
//{
//session start
// проверка на авторизацию
// если нет параметра то грузим заказы
?>
<!DOCTYPE html>
<html>
<!--<head>-->
<!-- подключим к странице head.php заголовки и линковку-->
<!--</head>-->
<?php
require_once ('./head.php');
?>
<body>
<div class="container">
<div class="row navbar navbar-inverse navbar-fixed-top" id="header">
<!-- wrapper подтянем header сайта-->
<?php require_once ('./templates/header.php'); ?>
</div>
<div class="row" id="main_cont"><!-- middle -->
<!--для шифровки пароля<?echo password_hash ( "password2" , PASSWORD_BCRYPT);?>-->
<!-- подтянем menu сайта-->
<?php require_once ('./navigation.php'); ?>
<!--<div class="footer">
<div> статус: admin/user<br>имя пользователя/ник</div>
</div>-->
</div>
</div>
</body>
</html>
<script type="text/javascript">
/*$(document).ready(function () {
var offset = $('#header').offset();
var topPadding = 0;
$(window).scroll(function() {
if ($(window).scrollTop() > offset.top) {
$('#header').css('margin-top',$(window).scrollTop() - offset.top + topPadding);
// $('#header').stop().animate({marginTop: $(window).scrollTop() - offset.top + topPadding});
}
else {
$('#header').css('margin-top',0);
// $('#header').stop().animate({marginTop: 0});
}
});
});
*/
</script>
<?//}?>