-
Notifications
You must be signed in to change notification settings - Fork 1
/
500.php
27 lines (24 loc) · 935 Bytes
/
500.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
<?php
require 'inc/config.php';
require 'inc/views/template_head_start.php';
require 'inc/views/template_head_end.php';
?>
<!-- Error Content -->
<div class="content bg-white text-center pulldown overflow-hidden">
<div class="row">
<div class="col-sm-6 col-sm-offset-3">
<!-- Error Titles -->
<h1 class="font-s128 font-w700 text-modern animated zoomInDown">500</h1>
<h2 class="h3 font-w500 push-50 animated fadeInUp">We are sorry but our server encountered an internal error or DB operation error..</h2>
<!-- END Error Titles -->
</div>
</div>
</div>
<!-- END Error Content -->
<!-- Error Footer -->
<div class="content pulldown text-muted text-center font-w700">
<a class="link-effect" href="/index.php">Click here to go Home <i class="si si-home push-5-l"></i></a>
</div>
<!-- END Error Footer -->
</body>
</html>