51 lines
2.3 KiB
HTML
51 lines
2.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<!-- Required meta tags -->
|
|
<meta charset="utf-8">
|
|
<meta name="description" content="BitDeals: Ошибка 400">
|
|
|
|
<!-- Required meta tags -->
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
<title>Ошибка 400 | 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('Ошибка 400: ' + params.get("error"));
|
|
$('#error_description').html(decodeURIComponent(params.get("error_description")));
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |