Committing updates.

This commit is contained in:
Преподобный Ален
2021-09-17 15:04:26 +03:00
parent e758e8d8dc
commit f4f4d104cf
136 changed files with 46883 additions and 79 deletions

51
www/error/500/index.html Normal file
View File

@@ -0,0 +1,51 @@
<!DOCTYPE html>
<html lang="ru">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="description" content="BitDeals: Ошибка 500">
<!-- Required meta tags -->
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Ошибка 500 | BitDeals</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="/assets/vendor/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<!-- Favicons -->
<link href="/assets/img/favicon.png" rel="icon">
<link href="/assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Custom styles for this template -->
<link href="/assets/css/fonts.css" rel="stylesheet" type="text/css">
<link href="/assets/css/main.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="oauth-container">
<div class="border rounded">
<div class="text-break oauth-error">
<div class="h3 mb-3 text-center font-weight-normal">BitDeals</div>
<div class="h3 mb-3 text-center">Ошибка сервера</div>
<hr class="my-1">
<div id="error" class="mt-3 font-weight-bold"></div>
<div id="error_description" class="mt-3 font-weight-normal"></div>
</div>
<div class="mt-3">
<hr class="my-1">
<p class="mt-3 text-muted text-center">© BitDeals 2020</p>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="/assets/vendor/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
<script>
$(document).ready(function() {
let params = new URLSearchParams(document.location.search);
$('#error').html('Ошибка 500: ' + params.get("error"));
$('#error_description').html(decodeURIComponent(params.get("error_description")));
});
</script>
</body>
</html>