JaBa/dashboard/views/500.ejs
JonnyBro b0deb2e447 v3.2.8
Статистика пользователя и сервера на сайте
Удалён лишний файл
Отключена комадна someone
Фикс currentURL в переменных страниц
Обновлена локализация
2022-01-13 18:55:13 +05:00

61 lines
No EOL
1.5 KiB
Text

<!DOCTYPE html>
<html>
<%- include("includes/head") %>
<body class="hold-transition skin-red sidebar-mini">
<div class="wrapper">
<!-- The header is the topbar -->
<%- include("includes/header") %>
<!-- The sidebar includes the menu -->
<%- include("includes/sidebar") %>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
Ошибка 500
</h1>
</section>
<!-- 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">
<input type="text" name="q" class="form-control"
placeholder="<%= translate("dashboard:SEARCH") %>">
<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 -->
<%- include("includes/footer") -%>
</div>
<!-- ./wrapper -->
</body>
</html>