-
Notifications
You must be signed in to change notification settings - Fork 0
/
403-error.php
37 lines (24 loc) · 890 Bytes
/
403-error.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
<!DOCTYPE html>
<html lang="en">
<?php include './headerlinks.php'; ?>
<body class="body-wrapper">
<div class="main_wrapper">
<?php include './header.php'; ?>
<!-- ERROR CONTENT -->
<div class="mainContent error-content clearfix">
<div class="container">
<div class="error-content-top">
<h1>403</h1>
<h3>Error</h3>
</div>
<h3>Oops!</h3>
<p>You don't have permission to access the requested directory. There is either no index document or the directory is read-protected.
If you think this is a server error, please contact the webmaster.</p>
<p><a href="index">Go back</a> ? or <a href="contact">Contact us</a> About a problem</p>
</div>
</div>
<?php include './footer.php'; ?>
</div>
<?php include './footerlinks.php'; ?>
</body>
</html>