2021-12-10 21:39:54 +05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
2021-12-24 20:52:27 +05:00
|
|
|
<%- include("includes/head") %>
|
2021-12-11 01:36:10 +05:00
|
|
|
|
2021-12-16 23:42:58 +05:00
|
|
|
<body class="hold-transition skin-red sidebar-mini">
|
|
|
|
<div class="wrapper">
|
|
|
|
<!-- The header is the topbar -->
|
2021-12-24 20:52:27 +05:00
|
|
|
<%- include("includes/header") %>
|
2021-12-11 01:36:10 +05:00
|
|
|
|
2021-12-16 23:42:58 +05:00
|
|
|
<!-- The sidebar includes the menu -->
|
2021-12-24 20:52:27 +05:00
|
|
|
<%- include("includes/sidebar") %>
|
2021-12-16 23:42:58 +05:00
|
|
|
|
|
|
|
<!-- Content Wrapper. Contains page content -->
|
|
|
|
<div class="content-wrapper">
|
2021-12-11 01:36:10 +05:00
|
|
|
|
|
|
|
<!-- Content Header (Page header) -->
|
|
|
|
<section class="content-header">
|
|
|
|
<h1>
|
|
|
|
500 Error Page
|
|
|
|
</h1>
|
|
|
|
</section>
|
2021-12-10 21:39:54 +05:00
|
|
|
|
|
|
|
<!-- Main content -->
|
|
|
|
<section class="content">
|
|
|
|
<div class="error-page">
|
|
|
|
<h2 class="headline text-red"> 500</h2>
|
|
|
|
|
|
|
|
<div class="error-content">
|
|
|
|
<h3><i class="fa fa-warning text-red"></i> <%= translate("dashboard:ERR_OCCURRED") %></h3>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<%= translate("dashboard:ERR_OCCURRED_CONTENT") %>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<form class="search-form" action="/selector">
|
|
|
|
<div class="input-group">
|
2021-12-16 23:42:58 +05:00
|
|
|
<input type="text" name="q" class="form-control"
|
|
|
|
placeholder="<%= translate("dashboard:SEARCH") %>">
|
2021-12-10 21:39:54 +05:00
|
|
|
|
|
|
|
<div class="input-group-btn">
|
|
|
|
<button type="submit" class="btn btn-danger btn-flat"><i class="fa fa-search"></i>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- /.input-group -->
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<!-- /.error-content -->
|
|
|
|
</div>
|
|
|
|
<!-- /.error-page -->
|
|
|
|
</section>
|
|
|
|
<!-- /.content -->
|
|
|
|
</div>
|
|
|
|
<!-- /.content-wrapper -->
|
|
|
|
|
2021-12-24 20:52:27 +05:00
|
|
|
<%- include("includes/footer") -%>
|
2021-12-10 21:39:54 +05:00
|
|
|
</div>
|
|
|
|
<!-- ./wrapper -->
|
|
|
|
</body>
|
2021-12-16 23:42:58 +05:00
|
|
|
|
2021-12-11 01:36:10 +05:00
|
|
|
</html>
|