error.php
3.46 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!-- *** LOGIN MODAL ***
_________________________________________________________ -->
<div class="modal fade" id="login-modal" tabindex="-1" role="dialog" aria-labelledby="Login" aria-hidden="true">
<div class="modal-dialog modal-sm">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title" id="Login">Customer login</h4>
</div>
<div class="modal-body">
<form action="customer-orders.html" method="post">
<div class="form-group">
<input type="text" class="form-control" id="email_modal" placeholder="email">
</div>
<div class="form-group">
<input type="password" class="form-control" id="password_modal" placeholder="password">
</div>
<p class="text-center">
<button class="btn btn-template-main"><i class="fa fa-sign-in"></i> Log in</button>
</p>
</form>
<p class="text-center text-muted">Not registered yet?</p>
<p class="text-center text-muted"><a href="customer-register.html"><strong>Register now</strong></a>! It is easy and done in 1 minute and gives you access to special discounts and much more!</p>
</div>
</div>
</div>
</div>
<!-- *** LOGIN MODAL END *** -->
<div id="content">
<div class="container">
<div class="col-sm-6 col-sm-offset-3" id="error-page">
<div class="box">
<p class="text-center">
<a href="index.html">
<img src="img/logo.png">
</a>
</p>
<h3>Извините, страница по этому адресу недоступна</h3>
<h4 class="text-muted">Ошибка 404 - Страница не найдена</h4>
<p class="buttons"><a href="index.html" class="btn btn-template-main"><i class="fa fa-home"></i> На главную</a>
</p>
</div>
</div>
<!-- /.col-sm-6 -->
</div>
<!-- /.container -->
</div>
<!-- /#content -->
<!-- *** GET IT ***
_________________________________________________________ -->
<div id="get-it">
<div class="container">
<div class="col-md-8 col-sm-12">
<h3>Хотите такой же классный сайт?</h3>
</div>
<div class="col-md-4 col-sm-12">
<a href="index.html#" class="btn btn-template-transparent-primary modal-link" data-title="Заказать" data-form="artboxcore-modal">Заказать</a>
</div>
</div>
</div>
<!-- *** GET IT END *** -->
<?php
require("./blocks/modal.php");
require("./blocks/footer_endhtml.php");
?>